From 0b970fc2ee14bf9b76c71c56b4516e429a891087 Mon Sep 17 00:00:00 2001 From: nojhan Date: Sun, 29 Jan 2023 08:06:44 +0100 Subject: [PATCH 01/20] feat(depth_marks): atomic styling of depth marks Color each `{depth_marks}` with the corresponding `depth_styles`. Implements #8 --- README.md | 4 ++++ clutchlog/clutchlog.h | 20 ++++++++++++++------ tests/t-demo-extravagant.cpp | 24 ++++++++++++++++-------- tests/t-hash-color.cpp | 2 +- 4 files changed, 35 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index d8a866d..a011415 100644 --- a/README.md +++ b/README.md @@ -412,6 +412,10 @@ For example: log.depth_styles({ fmt(255), fmt(250), fmt(245), fmt(240), fmt(235) }); ``` +If `clutchlog::depth_styles` is set, the `{depth_marks}` template tag will render +with each mark having each own style corresponding to its depth. +Note: a depth of zero showing no mark, the first style in the list is never applied to marks. + Advanced Usage ============== diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index c79e0e9..b5a09ef 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -1288,17 +1288,25 @@ class clutchlog row = replace(row, "\\{name\\}", name); row = replace(row, "\\{depth\\}", actual_depth); - std::ostringstream chevrons; - for(size_t i = _strip_calls; i < depth; ++i) { - chevrons << _depth_mark; - } - row = replace(row, "\\{depth_marks\\}", chevrons.str()); - if(_depth_fmts.size() == 0) { row = replace(row, "\\{depth_fmt\\}", fmt(actual_depth % 256).str() ); + + std::ostringstream chevrons; + for(size_t i = 0; i < actual_depth; ++i) { + chevrons << _depth_mark; + } + row = replace(row, "\\{depth_marks\\}", chevrons.str()); + } else { row = replace(row, "\\{depth_fmt\\}", _depth_fmts[std::min(actual_depth,_depth_fmts.size()-1)].str() ); + + std::ostringstream chevrons; + for(size_t i = 0; i < actual_depth; ++i) { + chevrons << _depth_fmts[std::min(i+1,_depth_fmts.size()-1)].str() + << _depth_mark; + } + row = replace(row, "\\{depth_marks\\}", chevrons.str()); } #endif row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str()); diff --git a/tests/t-demo-extravagant.cpp b/tests/t-demo-extravagant.cpp index 3637924..a7ed491 100644 --- a/tests/t-demo-extravagant.cpp +++ b/tests/t-demo-extravagant.cpp @@ -83,21 +83,29 @@ int main(const int argc, char* argv[]) log.hfill_mark('-'); const short dark = 238; - const short lite = 250; + const short lite = 245; + + std::vector greys = {fmt(15)}; + for(unsigned short i=255; i>231; i-=3) { + greys.push_back( fmt(i) ); + } + log.depth_styles(greys); format << fmt(dark,lite) << "{name}" - << fmt(lite,dark) << "" - << fmt(fg::none,dark) << "{level_fmt}" << " {level_short} " << reset - << fmt(dark,bg::none) << "" << reset - << fmt(dark,bg::none) << "{depth_marks}" << reset + << fmt(fg::none,lite,typo::inverse) << "{level_fmt}" + << fmt(fg::none,bg::black,typo::inverse) << "{level_fmt}" << " {level_short} " << reset + << "{level_fmt} " << reset + << fmt(dark,bg::none) << "{depth_marks}" //<< reset << "{level_fmt}" + // << "{funchash_fmt}" << bold("{msg}") - << discreet(" {hfill} ") + // << discreet(" {hfill} ") + << "{depth_fmt} {hfill} " << fmt(dark,bg::none) << "" - << fmt(fg::none,dark) << "{level_fmt} {func} " + << fmt(fg::none,dark) << "{funchash_fmt}{func} " << fmt(lite,dark) << "" - << fmt(dark,lite) << "{file}" << reset + << fmt(dark,lite) << "{filehash_fmt}{file}" << reset << fmt(dark,lite) << "" << fmt(lite,dark) << "{line}" << reset << "\n"; diff --git a/tests/t-hash-color.cpp b/tests/t-hash-color.cpp index 1c6882f..68b1c08 100644 --- a/tests/t-hash-color.cpp +++ b/tests/t-hash-color.cpp @@ -34,7 +34,7 @@ int main(/*const int argc, char* argv[]*/) fmt reset(typo::reset); std::ostringstream tpl; - tpl << "{level_fmt}Having a {level} {filehash_fmt}within {file} {funchash_fmt}calling {func} {depth_fmt}at level {depth}" + tpl << "{level_fmt}Having a {level} {filehash_fmt}within {file} {funchash_fmt}calling {func} {depth_fmt}at depth {depth_marks} {depth} " << reset << " : {msg}\n"; log.format(tpl.str()); log.threshold(clutchlog::level::xdebug); From d5aa2d829b70170993de46c72fb1738930d1b81e Mon Sep 17 00:00:00 2001 From: nojhan Date: Sun, 29 Jan 2023 21:28:11 +0100 Subject: [PATCH 02/20] feat(stack): adds a call macro with depth delta Implements #9 --- README.md | 17 ++++++++++++ clutchlog/clutchlog.h | 39 ++++++++++++++++----------- tests/t-depth-delta.cpp | 58 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 99 insertions(+), 15 deletions(-) create mode 100644 tests/t-depth-delta.cpp diff --git a/README.md b/README.md index a011415..e909f2c 100644 --- a/README.md +++ b/README.md @@ -566,6 +566,23 @@ CLUTCHCODE(info, ``` +Manually Increase Stack Depth +----------------------------- + +You may want to manually increase the stack depth for a given logging call, +for instance to subdivise a single function in sections. +To do so, you can use the `CLUTCHLOGD` macro, which take an additional argument, +in the form of the number of additional (fake) stack depths you want: +```cpp +CLUTCHLOG( debug, "Call"); // Regular macro. +CLUTCHLOGD(debug, "Sub call", 1); // Adds an additional (fake) stack depth. +CLUTCHLOGD(debug, "Sub sub!", 2); // Adds two additional (fake) stack depths. +``` +That way, the depth will be rendered to the actual depth, plus the additional +depth delta. Note that the displayed function will stay the same. Any filtering +on the stack depth will take into account the fake depth and not the real one. + + Examples ======== diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index b5a09ef..7ddf721 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -76,23 +76,32 @@ //! Handy shortcuts to location. #define CLUTCHLOC __FILE__, __FUNCTION__, __LINE__ -//! Log a message at the given level. +//! Log a message at the given level and with a given depth delta. #ifndef NDEBUG - #define CLUTCHLOG( LEVEL, WHAT ) do { \ - auto& clutchlog__logger = clutchlog::logger(); \ - std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \ - clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC); \ + #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \ + auto& clutchlog__logger = clutchlog::logger(); \ + std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \ + clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \ } while(0) #else // not Debug build. - #define CLUTCHLOG( LEVEL, WHAT ) do { \ - if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \ - auto& clutchlog__logger = clutchlog::logger(); \ - std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \ - clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC); \ - } \ + #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \ + if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \ + auto& clutchlog__logger = clutchlog::logger(); \ + std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \ + clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \ + } \ } while(0) #endif // NDEBUG +//! Log a message at the given level. +#ifndef NDEBUG + #define CLUTCHLOG( LEVEL, WHAT ) \ + CLUTCHLOGD(LEVEL, WHAT, 0) +#else // not Debug build. + #define CLUTCHLOG( LEVEL, WHAT ) \ + CLUTCHLOGD(LEVEL, WHAT, 0) +#endif // NDEBUG + //! Dump the given container. #ifndef NDEBUG #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \ @@ -1364,7 +1373,8 @@ class clutchlog void log( const level& stage, const std::string& what, - const std::string& file, const std::string& func, size_t line + const std::string& file, const std::string& func, const size_t line, + const size_t depth_delta = 0 ) const { scope_t scope = locate(stage, file, func, line); @@ -1373,12 +1383,11 @@ class clutchlog #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 *_out << format(_format_log, what, basename(getenv("_")), stage, file, func, - line, scope.depth ); + line, scope.depth + depth_delta ); #else *_out << format(_format_log, what, stage, file, func, line ); - #endif _out->flush(); } // if scopes.matches @@ -1389,7 +1398,7 @@ class clutchlog void dump( const level& stage, const In container_begin, const In container_end, - const std::string& file, const std::string& func, size_t line, + const std::string& file, const std::string& func, const size_t line, const std::string& filename_template = "dump_{n}.dat", const std::string sep = dump_default_sep ) const diff --git a/tests/t-depth-delta.cpp b/tests/t-depth-delta.cpp new file mode 100644 index 0000000..0db389d --- /dev/null +++ b/tests/t-depth-delta.cpp @@ -0,0 +1,58 @@ +#include +#include + +#include "../clutchlog/clutchlog.h" + +void deepcall() +{ + CLUTCHLOG(warning,"at depth 4"); + CLUTCHLOGD(warning,"at depth 4+1", 1); + CLUTCHLOGD(warning,"at depth 4+2", 2); +} + +void subsubsubcall() +{ + CLUTCHLOG(warning,"at depth 3"); + CLUTCHLOGD(warning,"at depth 3+1", 1); + CLUTCHLOGD(warning,"at depth 3+2", 2); + deepcall(); +} + +void subsubcall() +{ + CLUTCHLOG(warning,"at depth 2"); + CLUTCHLOGD(warning,"at depth 2+1", 1); + CLUTCHLOGD(warning,"at depth 2+2", 2); + subsubsubcall(); +} + +void subcall() +{ + CLUTCHLOG(warning,"at depth 1"); + CLUTCHLOGD(warning,"at depth 1+1", 1); + CLUTCHLOGD(warning,"at depth 1+2", 2); + subsubcall(); +} + +int main(/*const int argc, char* argv[]*/) +{ + auto& log = clutchlog::logger(); + using fmt = clutchlog::fmt; + using typo = clutchlog::fmt::typo; + + fmt reset(typo::reset); + std::ostringstream tpl; + tpl << "{depth_fmt}{depth} {depth_marks}" + << reset << "{funchash_fmt}in {func} {msg}\t\n"; + log.format(tpl.str()); + log.threshold(clutchlog::level::xdebug); + std::vector greys = {fmt(15)}; + for(unsigned short i=255; i > 231; i-=3) { + greys.push_back( fmt(i) ); } + log.depth_styles( greys ); + log.depth_mark("| "); + + CLUTCHLOG(warning,"in main"); + subcall(); +} + From 2621e68c20b24071badb5c50314269247577283c Mon Sep 17 00:00:00 2001 From: nojhan Date: Mon, 30 Jan 2023 22:16:00 +0100 Subject: [PATCH 03/20] feat(depth): adds the CLUTCHLOGD macro Allows to increase depth manually at log call. Implements #9 --- clutchlog/clutchlog.h | 1 + 1 file changed, 1 insertion(+) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index 7ddf721..23ad419 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -166,6 +166,7 @@ #else // not WITH_CLUTCHLOG // Disabled macros can still be called in Release builds. #define CLUTCHLOG( LEVEL, WHAT ) do {/*nothing*/} while(0) + #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do {/*nothing*/} while(0) #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do {/*nothing*/} while(0) #define CLUTCHFUNC( LEVEL, FUNC, ... ) do {/*nothing*/} while(0) #define CLUTCHCODE( LEVEL, CODE ) do {/*nothing*/} while(0) From 206fe1ab945c6ab9b80a3bb7c4a27e3708714b8c Mon Sep 17 00:00:00 2001 From: nojhan Date: Mon, 30 Jan 2023 22:17:04 +0100 Subject: [PATCH 04/20] bump to v0.16 --- CMakeLists.txt | 2 +- docs/annotated.html | 2 +- docs/classclutchlog-members.html | 6 +- docs/classclutchlog.html | 56 +- docs/classclutchlog.js | 4 +- docs/classclutchlog_1_1fmt-members.html | 2 +- docs/classclutchlog_1_1fmt.html | 14 +- docs/classes.html | 2 +- docs/clutchlog_8h.html | 13 +- docs/clutchlog_8h.js | 1 + docs/clutchlog_8h__dep__incl.map | 13 +- docs/clutchlog_8h__dep__incl.md5 | 2 +- docs/clutchlog_8h__dep__incl.svg | 97 +- docs/clutchlog_8h__dep__incl_org.svg | 99 +- docs/clutchlog_8h_source.html | 2623 +++++++++-------- docs/dir_000001_000000.html | 4 +- .../dir_59425e443f801f1f2fd8bbe4959a3ccf.html | 5 +- ...r_59425e443f801f1f2fd8bbe4959a3ccf_dep.map | 2 +- ...r_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 | 2 +- ...r_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg | 4 +- .../dir_c318bd5cf14aaa5601e6029e0b5b4048.html | 2 +- docs/files.html | 13 +- docs/files_dup.js | 1 + docs/functions.html | 6 +- docs/functions_enum.html | 2 +- docs/functions_func.html | 6 +- docs/functions_rela.html | 2 +- docs/functions_vars.html | 2 +- docs/globals.html | 5 +- docs/globals_defs.html | 5 +- docs/graph_legend.html | 2 +- docs/group___default_config.html | 2 +- docs/group___formating.html | 2 +- docs/group___main.html | 2 +- docs/group___main.js | 14 +- docs/group___use_macros.html | 44 +- docs/group___use_macros.js | 1 + docs/group__colors16.html | 2 +- docs/group__colors256__16_m.html | 2 +- docs/hierarchy.html | 2 +- docs/index.html | 125 +- docs/inherits.html | 2 +- docs/modules.html | 2 +- docs/navtreedata.js | 34 +- docs/navtreeindex0.js | 92 +- docs/navtreeindex1.js | 15 +- docs/search/all_10.js | 2 +- docs/search/all_3.js | 17 +- docs/search/all_4.js | 22 +- docs/search/all_5.js | 28 +- docs/search/all_6.js | 2 +- docs/search/all_7.js | 2 +- docs/search/all_8.js | 6 +- docs/search/all_9.js | 16 +- docs/search/all_a.js | 6 +- docs/search/all_b.js | 6 +- docs/search/all_c.js | 2 +- docs/search/all_d.js | 4 +- docs/search/all_e.js | 8 +- docs/search/all_f.js | 8 +- docs/search/classes_0.js | 4 +- docs/search/classes_1.js | 8 +- docs/search/classes_2.js | 6 +- docs/search/classes_3.js | 2 +- docs/search/defines_0.js | 6 +- docs/search/defines_1.js | 2 +- docs/search/enums_0.js | 2 +- docs/search/enums_1.js | 2 +- docs/search/enums_2.js | 2 +- docs/search/enums_3.js | 2 +- docs/search/enums_4.js | 2 +- docs/search/enums_5.js | 2 +- docs/search/enumvalues_0.js | 6 +- docs/search/files_0.js | 2 +- docs/search/functions_0.js | 4 +- docs/search/functions_1.js | 6 +- docs/search/functions_2.js | 4 +- docs/search/functions_3.js | 18 +- docs/search/functions_4.js | 2 +- docs/search/functions_5.js | 14 +- docs/search/functions_6.js | 4 +- docs/search/functions_7.js | 2 +- docs/search/functions_8.js | 2 +- docs/search/functions_9.js | 6 +- docs/search/functions_a.js | 2 +- docs/search/groups_0.js | 2 +- docs/search/groups_1.js | 2 +- docs/search/groups_2.js | 2 +- docs/search/groups_3.js | 2 +- docs/search/groups_4.js | 2 +- docs/search/groups_5.js | 2 +- docs/search/pages_0.js | 2 +- docs/search/related_0.js | 2 +- docs/search/variables_0.js | 28 +- docs/search/variables_1.js | 6 +- docs/search/variables_2.js | 16 +- docs/search/variables_3.js | 6 +- docs/search/variables_4.js | 2 +- docs/search/variables_5.js | 4 +- docs/search/variables_6.js | 2 +- docs/search/variables_7.js | 4 +- docs/search/variables_8.js | 4 +- ...tclutchlog_1_1fmt_1_1bg__16_m-members.html | 2 +- docs/structclutchlog_1_1fmt_1_1bg__16_m.html | 10 +- ...ctclutchlog_1_1fmt_1_1bg__256-members.html | 2 +- docs/structclutchlog_1_1fmt_1_1bg__256.html | 8 +- ...ructclutchlog_1_1fmt_1_1color-members.html | 2 +- docs/structclutchlog_1_1fmt_1_1color.html | 6 +- ...utchlog_1_1fmt_1_1color__16_m-members.html | 2 +- ...structclutchlog_1_1fmt_1_1color__16_m.html | 16 +- ...lutchlog_1_1fmt_1_1color__256-members.html | 2 +- .../structclutchlog_1_1fmt_1_1color__256.html | 12 +- ...tclutchlog_1_1fmt_1_1fg__16_m-members.html | 2 +- docs/structclutchlog_1_1fmt_1_1fg__16_m.html | 10 +- ...ctclutchlog_1_1fmt_1_1fg__256-members.html | 2 +- docs/structclutchlog_1_1fmt_1_1fg__256.html | 8 +- docs/structclutchlog_1_1scope__t-members.html | 2 +- docs/structclutchlog_1_1scope__t.html | 4 +- docs/t-assert_8cpp_source.html | 6 +- docs/t-color16_m_8cpp_source.html | 10 +- docs/t-color256_8cpp_source.html | 10 +- docs/t-color_8cpp_source.html | 14 +- docs/t-demo-extravagant_8cpp_source.html | 102 +- docs/t-demo_8cpp_source.html | 8 +- docs/t-depth-delta_8cpp_source.html | 166 ++ docs/t-dump_8cpp_source.html | 6 +- docs/t-fmt-constructors_8cpp_source.html | 10 +- docs/t-hash-color_8cpp_source.html | 12 +- docs/t-log_8cpp_source.html | 6 +- docs/t-one-line-if_8cpp_source.html | 4 +- 130 files changed, 2196 insertions(+), 1917 deletions(-) create mode 100644 docs/t-depth-delta_8cpp_source.html diff --git a/CMakeLists.txt b/CMakeLists.txt index 507a7f8..b794cc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.10 FATAL_ERROR) project("clutchlog" - VERSION 0.15 + VERSION 0.16 DESCRIPTION "A logging system which targets versatile debugging") enable_language(CXX) # C++ diff --git a/docs/annotated.html b/docs/annotated.html index c9f4a52..7a8cdd9 100644 --- a/docs/annotated.html +++ b/docs/annotated.html @@ -28,7 +28,7 @@ Logo
clutchlog -  0.14 +  0.15
diff --git a/docs/classclutchlog-members.html b/docs/classclutchlog-members.html index fe7c2cb..2fef3b8 100644 --- a/docs/classclutchlog-members.html +++ b/docs/classclutchlog-members.html @@ -28,7 +28,7 @@ Logo
clutchlog -  0.14 +  0.15
@@ -116,7 +116,7 @@ $(document).ready(function(){initNavTree('classclutchlog.html',''); initResizabl default_hfill_minclutchloginlineprotectedstatic default_strip_callsclutchloginlineprotectedstatic depth_styles(std::vector< fmt > styles)clutchloginline - dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) constclutchloginline + dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) constclutchloginline dump_default_formatclutchloginlineprotectedstatic dump_default_sepclutchloginlineprotectedstatic error enum value (defined in clutchlog)clutchlog @@ -136,7 +136,7 @@ $(document).ready(function(){initNavTree('classclutchlog.html',''); initResizabl line(std::string line)clutchloginline locate(const level &stage, const std::string &file, const std::string &func, const size_t line) constclutchloginline location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")clutchloginline - log(const level &stage, const std::string &what, const std::string &file, const std::string &func, size_t line) constclutchloginline + log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) constclutchloginline logger()clutchloginlinestatic note enum value (defined in clutchlog)clutchlog operator=(clutchlog const &)=delete (defined in clutchlog)clutchlog diff --git a/docs/classclutchlog.html b/docs/classclutchlog.html index 299f623..907d2d3 100644 --- a/docs/classclutchlog.html +++ b/docs/classclutchlog.html @@ -28,7 +28,7 @@ Logo
clutchlog -  0.14 +  0.15
@@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('classclutchlog.html',''); initResizabl

The single class which holds everything.

This is a Singleton class.

-

Definition at line 177 of file clutchlog.h.

+

Definition at line 187 of file clutchlog.h.

@@ -201,15 +201,15 @@ std::string  - - - - + + + - - - + + +

Public Member Functions

format (std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
 Substitute all tags in the format string with the corresponding information and apply the style corresponding to the log level.
 
-void log (const level &stage, const std::string &what, const std::string &file, const std::string &func, size_t line) const
 Print a log message IF the location matches the given one.
 
+
+void log (const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
 Print a log message IF the location matches the given one.
 
template<class In >
void dump (const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
 Dump a serializable container after a comment line with log information.
 
void dump (const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
 Dump a serializable container after a comment line with log information.
 
@@ -369,9 +369,9 @@ void  diff --git a/docs/classclutchlog_1_1fmt.html b/docs/classclutchlog_1_1fmt.html index b1bb17c..4a78df2 100644 --- a/docs/classclutchlog_1_1fmt.html +++ b/docs/classclutchlog_1_1fmt.html @@ -28,7 +28,7 @@ @@ -154,7 +154,7 @@ $(document).ready(function(){initNavTree('classclutchlog_1_1fmt.html',''); initR
All styles may not be supported by a given terminal/operating system.
-

Definition at line 366 of file clutchlog.h.

+

Definition at line 376 of file clutchlog.h.

Static Protected Attributes

operator= (

Get the logger instance.

-
+ -

Definition at line 296 of file clutchlog.h.

+

Definition at line 306 of file clutchlog.h.

@@ -403,9 +403,9 @@ void 
operator= (Style will be chosen based on the hash value of the filename among the candidate ones.

See the {filehash_fmt} template tag.

-

Definition at line 1028 of file clutchlog.h.

+

Definition at line 1038 of file clutchlog.h.

-

References _filehash_fmts.

+

References _filehash_fmts.

@@ -437,9 +437,9 @@ void 
operator= (Style will be chosen based on the hash value of the filename among the candidate ones.

See the {funchash_fmt} template tag.

-

Definition at line 1036 of file clutchlog.h.

+

Definition at line 1046 of file clutchlog.h.

-

References _funchash_fmts.

+

References _funchash_fmts.

@@ -471,7 +471,7 @@ void 
operator= (The given list should be ordered, styles will be applied for the corresponding depth level. If the actual depth is larger than the number of styles, the last one is used.

See the {depth_fmt} template tag.

-

Definition at line 1045 of file clutchlog.h.

+

Definition at line 1055 of file clutchlog.h.

@@ -502,11 +502,11 @@ void 
operator= (Return the log level tag corresponding to the given pre-configured name.

Note
This is case sensitive, see the pre-configured _level_word.
-

Definition at line 1060 of file clutchlog.h.

+

Definition at line 1070 of file clutchlog.h.

-

References _word_level.

+

References _word_level.

-

Referenced by threshold().

+

Referenced by threshold().

@@ -549,11 +549,11 @@ template<class ... FMT>

Set the style (color and typo) of the given log level.

This version accept style arguments as if they were passed to clutchlog::fmt.

-

Definition at line 1094 of file clutchlog.h.

+

Definition at line 1104 of file clutchlog.h.

-

References style().

+

References style().

-

Referenced by style().

+

Referenced by style().

@@ -598,12 +598,12 @@ template<class ... FMT>

Replace mark by tag in form.

-
log.replace("{greet} {world}", "\\{greet\\}", "hello");
+
log.replace("{greet} {world}", "\\{greet\\}", "hello");
// returns "hello {world}"
-

Definition at line 1183 of file clutchlog.h.

+

Definition at line 1193 of file clutchlog.h.

-

Referenced by dump(), format(), and replace().

+

Referenced by dump(), format(), and replace().

@@ -612,8 +612,8 @@ template<class ... FMT> -
void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, size_t line) const
Print a log message IF the location matches the given one.
Definition: clutchlog.h:1356
-
static clutchlog & logger()
Get the logger instance.
Definition: clutchlog.h:296
+
static clutchlog & logger()
Get the logger instance.
Definition: clutchlog.h:306
+
void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
Print a log message IF the location matches the given one.
Definition: clutchlog.h:1374
clutchlog -  0.14 +  0.15
clutchlog -  0.14 +  0.15
@@ -415,9 +415,9 @@ std::ostream &  diff --git a/docs/clutchlog_8h.html b/docs/clutchlog_8h.html index afb9e50..2dbb3b1 100644 --- a/docs/clutchlog_8h.html +++ b/docs/clutchlog_8h.html @@ -28,7 +28,7 @@ @@ -114,8 +114,7 @@ $(document).ready(function(){initNavTree('clutchlog_8h.html',''); initResizable(

Go to the source code of this file.

@@ -179,8 +178,12 @@ Macros #define  - - + + + + + diff --git a/docs/clutchlog_8h.js b/docs/clutchlog_8h.js index 05cb530..bf6872c 100644 --- a/docs/clutchlog_8h.js +++ b/docs/clutchlog_8h.js @@ -7,6 +7,7 @@ var clutchlog_8h = [ "WITH_CLUTCHLOG", "clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4", null ], [ "CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG", "group___default_config.html#ga8564be479b948ee3052b61783c66d415", null ], [ "CLUTCHLOC", "group___use_macros.html#gae8911119d726a43b77f5781cb5a72813", null ], + [ "CLUTCHLOGD", "group___use_macros.html#ga369d365b7c25ec270596c3ca6839cf2c", null ], [ "CLUTCHLOG", "group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d", null ], [ "CLUTCHDUMP", "group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2", null ], [ "CLUTCHFUNC", "group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae", null ], diff --git a/docs/clutchlog_8h__dep__incl.map b/docs/clutchlog_8h__dep__incl.map index 20f2720..4740dc4 100644 --- a/docs/clutchlog_8h__dep__incl.map +++ b/docs/clutchlog_8h__dep__incl.map @@ -1,14 +1,15 @@ - + - - - - - + + + + + + diff --git a/docs/clutchlog_8h__dep__incl.md5 b/docs/clutchlog_8h__dep__incl.md5 index d28cb8a..440c2e6 100644 --- a/docs/clutchlog_8h__dep__incl.md5 +++ b/docs/clutchlog_8h__dep__incl.md5 @@ -1 +1 @@ -f0599479963670ec59fcd0540b0432ef \ No newline at end of file +03a5adb412c477109d73f308278ec653 \ No newline at end of file diff --git a/docs/clutchlog_8h__dep__incl.svg b/docs/clutchlog_8h__dep__incl.svg index 9fe6b9c..1422fbd 100644 --- a/docs/clutchlog_8h__dep__incl.svg +++ b/docs/clutchlog_8h__dep__incl.svg @@ -46,7 +46,7 @@ if (edges && edges.length) { @@ -54,13 +54,13 @@ var sectionId = 'dynsection-1'; clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -76,8 +76,8 @@ var sectionId = 'dynsection-1'; Node1->Node2 - - + + @@ -91,8 +91,8 @@ var sectionId = 'dynsection-1'; Node1->Node3 - - + + @@ -106,8 +106,8 @@ var sectionId = 'dynsection-1'; Node1->Node4 - - + + @@ -121,8 +121,8 @@ var sectionId = 'dynsection-1'; Node1->Node5 - - + + @@ -136,8 +136,8 @@ var sectionId = 'dynsection-1'; Node1->Node6 - - + + @@ -151,83 +151,98 @@ var sectionId = 'dynsection-1'; Node1->Node7 - - + + Node8 - - -t-dump.cpp + + +t-depth-delta.cpp Node1->Node8 - - + + Node9 - - -t-fmt-constructors.cpp + + +t-dump.cpp Node1->Node9 - - + + Node10 - - -t-hash-color.cpp + + +t-fmt-constructors.cpp Node1->Node10 - - + + Node11 - - -t-log.cpp + + +t-hash-color.cpp Node1->Node11 - - + + Node12 - - -t-one-line-if.cpp + + +t-log.cpp Node1->Node12 - - + + + + + +Node13 + + +t-one-line-if.cpp + + + + + +Node1->Node13 + + diff --git a/docs/clutchlog_8h__dep__incl_org.svg b/docs/clutchlog_8h__dep__incl_org.svg index df19fdd..3682d73 100644 --- a/docs/clutchlog_8h__dep__incl_org.svg +++ b/docs/clutchlog_8h__dep__incl_org.svg @@ -4,17 +4,17 @@ - + clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -30,8 +30,8 @@ Node1->Node2 - - + + @@ -45,8 +45,8 @@ Node1->Node3 - - + + @@ -60,8 +60,8 @@ Node1->Node4 - - + + @@ -75,8 +75,8 @@ Node1->Node5 - - + + @@ -90,8 +90,8 @@ Node1->Node6 - - + + @@ -105,83 +105,98 @@ Node1->Node7 - - + + Node8 - - -t-dump.cpp + + +t-depth-delta.cpp Node1->Node8 - - + + Node9 - - -t-fmt-constructors.cpp + + +t-dump.cpp Node1->Node9 - - + + Node10 - - -t-hash-color.cpp + + +t-fmt-constructors.cpp Node1->Node10 - - + + Node11 - - -t-log.cpp + + +t-hash-color.cpp Node1->Node11 - - + + Node12 - - -t-one-line-if.cpp + + +t-log.cpp Node1->Node12 - - + + + + + +Node13 + + +t-one-line-if.cpp + + + + + +Node1->Node13 + + diff --git a/docs/clutchlog_8h_source.html b/docs/clutchlog_8h_source.html index fa6a0cb..71543c2 100644 --- a/docs/clutchlog_8h_source.html +++ b/docs/clutchlog_8h_source.html @@ -28,7 +28,7 @@ Logo @@ -151,1352 +151,1369 @@ $(document).ready(function(){initNavTree('clutchlog_8h_source.html',''); initRes
76 #define CLUTCHLOC __FILE__, __FUNCTION__, __LINE__
78 
80 #ifndef NDEBUG
-
81  #define CLUTCHLOG( LEVEL, WHAT ) do { \
-
82  auto& clutchlog__logger = clutchlog::logger(); \
-
83  std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
-
84  clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC); \
+
81  #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \
+
82  auto& clutchlog__logger = clutchlog::logger(); \
+
83  std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
+
84  clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
85  } while(0)
86 #else // not Debug build.
-
87  #define CLUTCHLOG( LEVEL, WHAT ) do { \
-
88  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
-
89  auto& clutchlog__logger = clutchlog::logger(); \
-
90  std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
-
91  clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC); \
-
92  } \
+
87  #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \
+
88  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
+
89  auto& clutchlog__logger = clutchlog::logger(); \
+
90  std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
+
91  clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
+
92  } \
93  } while(0)
94 #endif // NDEBUG
95 
97 #ifndef NDEBUG
-
98  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
-
99  auto& clutchlog__logger = clutchlog::logger(); \
-
100  clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
-
101  CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
-
102  } while(0)
-
103 #else // not Debug build.
-
104  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
-
105  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
-
106  auto& clutchlog__logger = clutchlog::logger(); \
-
107  clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
-
108  CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
-
109  } \
-
110  } while(0)
-
111 #endif // NDEBUG
-
112 
-
114 #ifndef NDEBUG
-
115  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
-
116  auto& clutchlog__logger = clutchlog::logger(); \
-
117  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
-
118  if(clutchlog__scope.matches) { \
-
119  FUNC(__VA_ARGS__); \
-
120  } \
-
121  } while(0)
-
122 #else // not Debug build.
-
123  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
-
124  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
-
125  auto& clutchlog__logger = clutchlog::logger(); \
-
126  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
-
127  if(clutchlog__scope.matches) { \
-
128  FUNC(__VA_ARGS__); \
-
129  } \
-
130  } \
-
131  } while(0)
-
132 #endif // NDEBUG
-
133 
-
135 #ifndef NDEBUG
-
136  #define CLUTCHCODE( LEVEL, ... ) do { \
-
137  auto& clutchlog__logger = clutchlog::logger(); \
-
138  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
-
139  if(clutchlog__scope.matches) { \
-
140  __VA_ARGS__ \
-
141  } \
-
142  } while(0)
-
143 #else // not Debug build.
-
144  #define CLUTCHCODE( LEVEL, CODE ) do { \
-
145  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
-
146  auto& clutchlog__logger = clutchlog::logger(); \
-
147  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
-
148  if(clutchlog__scope.matches) { \
-
149  CODE \
-
150  } \
-
151  } \
-
152  } while(0)
-
153 #endif // NDEBUG
-
154 
-
157 #else // not WITH_CLUTCHLOG
-
158  // Disabled macros can still be called in Release builds.
-
159  #define CLUTCHLOG( LEVEL, WHAT ) do {/*nothing*/} while(0)
-
160  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do {/*nothing*/} while(0)
-
161  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do {/*nothing*/} while(0)
-
162  #define CLUTCHCODE( LEVEL, CODE ) do {/*nothing*/} while(0)
-
163 #endif // WITH_CLUTCHLOG
-
164 
-
165 /**********************************************************************
-
166  * Implementation
-
167  **********************************************************************/
-
168 
-
169 #ifdef WITH_CLUTCHLOG
-
170 
- -
178 {
-
179  protected:
+
98  #define CLUTCHLOG( LEVEL, WHAT ) \
+
99  CLUTCHLOGD(LEVEL, WHAT, 0)
+
100 #else // not Debug build.
+
101  #define CLUTCHLOG( LEVEL, WHAT ) \
+
102  CLUTCHLOGD(LEVEL, WHAT, 0)
+
103 #endif // NDEBUG
+
104 
+
106 #ifndef NDEBUG
+
107  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
+
108  auto& clutchlog__logger = clutchlog::logger(); \
+
109  clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
+
110  CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
+
111  } while(0)
+
112 #else // not Debug build.
+
113  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
+
114  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
+
115  auto& clutchlog__logger = clutchlog::logger(); \
+
116  clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
+
117  CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
+
118  } \
+
119  } while(0)
+
120 #endif // NDEBUG
+
121 
+
123 #ifndef NDEBUG
+
124  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
+
125  auto& clutchlog__logger = clutchlog::logger(); \
+
126  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
+
127  if(clutchlog__scope.matches) { \
+
128  FUNC(__VA_ARGS__); \
+
129  } \
+
130  } while(0)
+
131 #else // not Debug build.
+
132  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
+
133  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
+
134  auto& clutchlog__logger = clutchlog::logger(); \
+
135  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
+
136  if(clutchlog__scope.matches) { \
+
137  FUNC(__VA_ARGS__); \
+
138  } \
+
139  } \
+
140  } while(0)
+
141 #endif // NDEBUG
+
142 
+
144 #ifndef NDEBUG
+
145  #define CLUTCHCODE( LEVEL, ... ) do { \
+
146  auto& clutchlog__logger = clutchlog::logger(); \
+
147  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
+
148  if(clutchlog__scope.matches) { \
+
149  __VA_ARGS__ \
+
150  } \
+
151  } while(0)
+
152 #else // not Debug build.
+
153  #define CLUTCHCODE( LEVEL, CODE ) do { \
+
154  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
+
155  auto& clutchlog__logger = clutchlog::logger(); \
+
156  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
+
157  if(clutchlog__scope.matches) { \
+
158  CODE \
+
159  } \
+
160  } \
+
161  } while(0)
+
162 #endif // NDEBUG
+
163 
+
166 #else // not WITH_CLUTCHLOG
+
167  // Disabled macros can still be called in Release builds.
+
168  #define CLUTCHLOG( LEVEL, WHAT ) do {/*nothing*/} while(0)
+
169  #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do {/*nothing*/} while(0)
+
170  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do {/*nothing*/} while(0)
+
171  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do {/*nothing*/} while(0)
+
172  #define CLUTCHCODE( LEVEL, CODE ) do {/*nothing*/} while(0)
+
173 #endif // WITH_CLUTCHLOG
+
174 
+
175 /**********************************************************************
+
176  * Implementation
+
177  **********************************************************************/
+
178 
+
179 #ifdef WITH_CLUTCHLOG
180 
-
185  #ifndef NDEBUG
-
186  #ifndef CLUTCHLOG_DEFAULT_FORMAT
-
187  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 // Enables: name, depth and depth_marks
-
189  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1 // Enables: hfill
-
190  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func} @ {file}:{line}\n"
-
191  #else
-
192  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
-
193  #endif
-
194  #else
-
195  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
-
196  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg} {hfill} {func} @ {file}:{line}\n"
-
197  #else
-
198  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
-
199  #endif
-
200  #endif
-
201  #endif
-
202  #else
-
203  #ifndef CLUTCHLOG_DEFAULT_FORMAT
-
204  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
206  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func}\n"
-
207  #else
-
208  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func}\n"
-
209  #endif
-
210  #endif
-
211  #endif
-
212  static inline std::string default_format = CLUTCHLOG_DEFAULT_FORMAT;
-
214 
-
215  #ifndef NDEBUG
-
216  #ifndef CLUTCHDUMP_DEFAULT_FORMAT
-
217  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
219  #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth}) @ {file}:{line}"
-
220  #else
-
221  #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func} @ {file}:{line}"
-
222  #endif
-
223  #endif // CLUTCHDUMP_DEFAULT_FORMAT
-
224  #else
-
225  #ifndef CLUTCHDUMP_DEFAULT_FORMAT
-
226  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
228  #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth})"
-
229  #else
-
230  #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func}"
-
231  #endif
-
232  #endif // CLUTCHDUMP_DEFAULT_FORMAT
-
233  #endif
-
234  static inline std::string dump_default_format = CLUTCHDUMP_DEFAULT_FORMAT;
-
236 
-
237  #ifndef CLUTCHDUMP_DEFAULT_SEP
-
238  #define CLUTCHDUMP_DEFAULT_SEP "\n"
-
240  #endif // CLUTCHDUMP_DEFAULT_SEP
-
241  static inline std::string dump_default_sep = CLUTCHDUMP_DEFAULT_SEP;
-
243 
-
244  #ifndef CLUTCHLOG_DEFAULT_DEPTH_MARK
-
245  #define CLUTCHLOG_DEFAULT_DEPTH_MARK ">"
-
247  #endif // CLUTCHLOG_DEFAULT_DEPTH_MARK
-
248  static inline std::string default_depth_mark = CLUTCHLOG_DEFAULT_DEPTH_MARK;
-
250 
-
251  #ifndef CLUTCHLOG_STRIP_CALLS
-
252  #define CLUTCHLOG_STRIP_CALLS 5
-
254  #endif // CLUTCHLOG_STRIP_CALLS
-
255  static inline unsigned int default_strip_calls = CLUTCHLOG_STRIP_CALLS;
-
257 
-
258  #ifndef CLUTCHLOG_DEFAULT_HFILL_MARK
-
259  #define CLUTCHLOG_DEFAULT_HFILL_MARK '.'
-
261  #endif // CLUTCHLOG_DEFAULT_HFILL_MARK
- -
264 
-
265 
-
266  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
-
267  #ifndef CLUTCHLOG_DEFAULT_HFILL_MAX
-
268  #define CLUTCHLOG_DEFAULT_HFILL_MAX 300
-
269  #endif
-
270  #ifndef CLUTCHLOG_DEFAULT_HFILL_MIN
-
271  #define CLUTCHLOG_DEFAULT_HFILL_MIN 150
-
272  #endif
-
273  #endif
-
274  static inline size_t default_hfill_max = CLUTCHLOG_DEFAULT_HFILL_MAX;
-
277  static inline size_t default_hfill_min = CLUTCHLOG_DEFAULT_HFILL_MIN;
-
278 
-
279  // NOTE: there is no CLUTCHLOG_HFILL_STYLE for defaulting,
-
280  // but you can still set `hfill_style(...)` on the logger singleton.
-
281  /* @} DefaultConfig */
-
282  /* @} */
-
283 
-
284 
-
285  public:
-
286 
-
296  static clutchlog& logger()
-
297  {
-
298  static clutchlog instance;
-
299  return instance;
-
300  }
-
301 
-
303  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
-
304 
-
366  class fmt {
-
367  public:
-
369  enum class ansi {
-
371  colors_16 = -1, // Not supposed to be casted.
-
373  colors_256 = 5, // Casted as short in color::operator<<.
-
375  colors_16M = 2 // Casted as short in color::operator<<
-
376  } mode;
-
377 
-
379  enum class typo {
-
380  reset = 0,
-
381  bold = 1,
-
382  underline = 4,
-
383  inverse = 7,
-
384  none = -1
-
385  } style;
-
386 
-
389  enum class fg {
-
391  black = 30,
-
392  red = 31,
-
393  green = 32,
-
394  yellow = 33,
-
395  blue = 34,
-
396  magenta = 35,
-
397  cyan = 36,
-
398  white = 37,
-
399  bright_black = 90,
-
400  bright_red = 91,
-
401  bright_green = 92,
-
402  bright_yellow = 93,
-
403  bright_blue = 94,
-
404  bright_magenta = 95,
-
405  bright_cyan = 96,
-
406  bright_white = 97,
-
407  none = -1
-
408  } fore;
-
409 
-
411  enum class bg {
-
412  black = 40,
-
413  red = 41,
-
414  green = 42,
-
415  yellow = 43,
-
416  blue = 44,
-
417  magenta = 45,
-
418  cyan = 46,
-
419  white = 47,
-
420  bright_black = 100,
-
421  bright_red = 101,
-
422  bright_green = 102,
-
423  bright_yellow = 103,
-
424  bright_blue = 104,
-
425  bright_magenta = 105,
-
426  bright_cyan = 106,
-
427  bright_white = 107,
-
428  none = -1
-
429  } back;
-
430 
-
431  protected:
-
433  friend std::ostream& operator<<(std::ostream& os, const std::tuple<fg,bg,typo>& fbs)
-
434  {
-
435  auto [f,b,s] = fbs;
-
436  std::vector<short> codes; codes.reserve(3);
-
437  if(f != fg::none) { codes.push_back(static_cast<short>(f));}
-
438  if(b != bg::none) { codes.push_back(static_cast<short>(b));}
-
439  if(s != typo::none) { codes.push_back(static_cast<short>(s));}
-
440  if(codes.size() == 0) {
-
441  return os;
-
442 
-
443  } else {
-
444  os << "\033[";
-
445  os << codes[0];
-
446  for(size_t i=1; i < codes.size(); ++i) {
-
447  os << ";" << codes[i];
-
448  }
-
449  os << "m";
-
450  }
-
451  return os;
-
452  }
-
453 
-
455  friend std::ostream& operator<<(std::ostream& os, const typo& s)
-
456  {
-
457  if(s != typo::none) {
-
458  os << "\033[" << static_cast<short>(s) << "m";
-
459  }
-
460  return os;
-
461  }
-
462 
-
465  protected:
-
470  struct color {
-
471  ansi mode; // Not const to allow for the implicit copy assignemnt operator.
+ +
188 {
+
189  protected:
+
190 
+
195  #ifndef NDEBUG
+
196  #ifndef CLUTCHLOG_DEFAULT_FORMAT
+
197  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 // Enables: name, depth and depth_marks
+
199  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1 // Enables: hfill
+
200  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func} @ {file}:{line}\n"
+
201  #else
+
202  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
+
203  #endif
+
204  #else
+
205  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
+
206  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg} {hfill} {func} @ {file}:{line}\n"
+
207  #else
+
208  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
+
209  #endif
+
210  #endif
+
211  #endif
+
212  #else
+
213  #ifndef CLUTCHLOG_DEFAULT_FORMAT
+
214  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
216  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func}\n"
+
217  #else
+
218  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func}\n"
+
219  #endif
+
220  #endif
+
221  #endif
+
222  static inline std::string default_format = CLUTCHLOG_DEFAULT_FORMAT;
+
224 
+
225  #ifndef NDEBUG
+
226  #ifndef CLUTCHDUMP_DEFAULT_FORMAT
+
227  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
229  #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth}) @ {file}:{line}"
+
230  #else
+
231  #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func} @ {file}:{line}"
+
232  #endif
+
233  #endif // CLUTCHDUMP_DEFAULT_FORMAT
+
234  #else
+
235  #ifndef CLUTCHDUMP_DEFAULT_FORMAT
+
236  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
238  #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth})"
+
239  #else
+
240  #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func}"
+
241  #endif
+
242  #endif // CLUTCHDUMP_DEFAULT_FORMAT
+
243  #endif
+
244  static inline std::string dump_default_format = CLUTCHDUMP_DEFAULT_FORMAT;
+
246 
+
247  #ifndef CLUTCHDUMP_DEFAULT_SEP
+
248  #define CLUTCHDUMP_DEFAULT_SEP "\n"
+
250  #endif // CLUTCHDUMP_DEFAULT_SEP
+
251  static inline std::string dump_default_sep = CLUTCHDUMP_DEFAULT_SEP;
+
253 
+
254  #ifndef CLUTCHLOG_DEFAULT_DEPTH_MARK
+
255  #define CLUTCHLOG_DEFAULT_DEPTH_MARK ">"
+
257  #endif // CLUTCHLOG_DEFAULT_DEPTH_MARK
+
258  static inline std::string default_depth_mark = CLUTCHLOG_DEFAULT_DEPTH_MARK;
+
260 
+
261  #ifndef CLUTCHLOG_STRIP_CALLS
+
262  #define CLUTCHLOG_STRIP_CALLS 5
+
264  #endif // CLUTCHLOG_STRIP_CALLS
+
265  static inline unsigned int default_strip_calls = CLUTCHLOG_STRIP_CALLS;
+
267 
+
268  #ifndef CLUTCHLOG_DEFAULT_HFILL_MARK
+
269  #define CLUTCHLOG_DEFAULT_HFILL_MARK '.'
+
271  #endif // CLUTCHLOG_DEFAULT_HFILL_MARK
+ +
274 
+
275 
+
276  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
+
277  #ifndef CLUTCHLOG_DEFAULT_HFILL_MAX
+
278  #define CLUTCHLOG_DEFAULT_HFILL_MAX 300
+
279  #endif
+
280  #ifndef CLUTCHLOG_DEFAULT_HFILL_MIN
+
281  #define CLUTCHLOG_DEFAULT_HFILL_MIN 150
+
282  #endif
+
283  #endif
+
284  static inline size_t default_hfill_max = CLUTCHLOG_DEFAULT_HFILL_MAX;
+
287  static inline size_t default_hfill_min = CLUTCHLOG_DEFAULT_HFILL_MIN;
+
288 
+
289  // NOTE: there is no CLUTCHLOG_HFILL_STYLE for defaulting,
+
290  // but you can still set `hfill_style(...)` on the logger singleton.
+
291  /* @} DefaultConfig */
+
292  /* @} */
+
293 
+
294 
+
295  public:
+
296 
+
306  static clutchlog& logger()
+
307  {
+
308  static clutchlog instance;
+
309  return instance;
+
310  }
+
311 
+
313  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
+
314 
+
376  class fmt {
+
377  public:
+
379  enum class ansi {
+
381  colors_16 = -1, // Not supposed to be casted.
+
383  colors_256 = 5, // Casted as short in color::operator<<.
+
385  colors_16M = 2 // Casted as short in color::operator<<
+
386  } mode;
+
387 
+
389  enum class typo {
+
390  reset = 0,
+
391  bold = 1,
+
392  underline = 4,
+
393  inverse = 7,
+
394  none = -1
+
395  } style;
+
396 
+
399  enum class fg {
+
401  black = 30,
+
402  red = 31,
+
403  green = 32,
+
404  yellow = 33,
+
405  blue = 34,
+
406  magenta = 35,
+
407  cyan = 36,
+
408  white = 37,
+
409  bright_black = 90,
+
410  bright_red = 91,
+
411  bright_green = 92,
+
412  bright_yellow = 93,
+
413  bright_blue = 94,
+
414  bright_magenta = 95,
+
415  bright_cyan = 96,
+
416  bright_white = 97,
+
417  none = -1
+
418  } fore;
+
419 
+
421  enum class bg {
+
422  black = 40,
+
423  red = 41,
+
424  green = 42,
+
425  yellow = 43,
+
426  blue = 44,
+
427  magenta = 45,
+
428  cyan = 46,
+
429  white = 47,
+
430  bright_black = 100,
+
431  bright_red = 101,
+
432  bright_green = 102,
+
433  bright_yellow = 103,
+
434  bright_blue = 104,
+
435  bright_magenta = 105,
+
436  bright_cyan = 106,
+
437  bright_white = 107,
+
438  none = -1
+
439  } back;
+
440 
+
441  protected:
+
443  friend std::ostream& operator<<(std::ostream& os, const std::tuple<fg,bg,typo>& fbs)
+
444  {
+
445  auto [f,b,s] = fbs;
+
446  std::vector<short> codes; codes.reserve(3);
+
447  if(f != fg::none) { codes.push_back(static_cast<short>(f));}
+
448  if(b != bg::none) { codes.push_back(static_cast<short>(b));}
+
449  if(s != typo::none) { codes.push_back(static_cast<short>(s));}
+
450  if(codes.size() == 0) {
+
451  return os;
+
452 
+
453  } else {
+
454  os << "\033[";
+
455  os << codes[0];
+
456  for(size_t i=1; i < codes.size(); ++i) {
+
457  os << ";" << codes[i];
+
458  }
+
459  os << "m";
+
460  }
+
461  return os;
+
462  }
+
463 
+
465  friend std::ostream& operator<<(std::ostream& os, const typo& s)
+
466  {
+
467  if(s != typo::none) {
+
468  os << "\033[" << static_cast<short>(s) << "m";
+
469  }
+
470  return os;
+
471  }
472 
-
474  enum class ground { // idem.
-
475  fore = 38,
-
476  back = 48
-
477  } type;
-
478 
-
484  color(ansi a, ground g) : mode(a), type(g) {}
-
485 
-
487  virtual bool is_set() const = 0;
+
475  protected:
+
480  struct color {
+
481  ansi mode; // Not const to allow for the implicit copy assignemnt operator.
+
482 
+
484  enum class ground { // idem.
+
485  fore = 38,
+
486  back = 48
+
487  } type;
488 
-
490  virtual std::ostream& print_on( std::ostream& os) const = 0;
-
491 
-
493  friend std::ostream& operator<<(std::ostream& os, const color& c)
-
494  {
-
495  if(c.is_set()) {
-
496  os << "\033[" << static_cast<short>(c.type) << ";" << static_cast<short>(c.mode) << ";";
-
497  c.print_on(os);
-
498  os << "m";
-
499  }
-
500  return os;
-
501  }
-
502  };
-
503 
-
504  // There is no color_16 because it would be the same as color_256, only with different indices,
-
505  // hence making it more complicated for the user to select the right constructor.
-
506  // Here, we just use enum for 16 colors, and indices for 256 colors.
-
507 
-
509  struct color_256 : public color {
-
513  short index;
-
514 
-
518  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
-
519 
-
525  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {assert(-1 <= i and i <= 255);}
-
526 
-
528  bool is_set() const {return index > -1;}
+
494  color(ansi a, ground g) : mode(a), type(g) {}
+
495 
+
497  virtual bool is_set() const = 0;
+
498 
+
500  virtual std::ostream& print_on( std::ostream& os) const = 0;
+
501 
+
503  friend std::ostream& operator<<(std::ostream& os, const color& c)
+
504  {
+
505  if(c.is_set()) {
+
506  os << "\033[" << static_cast<short>(c.type) << ";" << static_cast<short>(c.mode) << ";";
+
507  c.print_on(os);
+
508  os << "m";
+
509  }
+
510  return os;
+
511  }
+
512  };
+
513 
+
514  // There is no color_16 because it would be the same as color_256, only with different indices,
+
515  // hence making it more complicated for the user to select the right constructor.
+
516  // Here, we just use enum for 16 colors, and indices for 256 colors.
+
517 
+
519  struct color_256 : public color {
+
523  short index;
+
524 
+
528  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
529 
-
531  std::ostream& print_on( std::ostream& os) const
-
532  {
-
533  os << index;
-
534  return os;
-
535  }
-
536  };
-
537 
-
539  struct fg_256 : public color_256 {
-
541  fg_256() : color_256(ground::fore) {}
-
542 
-
546  fg_256(const short f) : color_256(ground::fore, f) {}
+
535  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {assert(-1 <= i and i <= 255);}
+
536 
+
538  bool is_set() const {return index > -1;}
+
539 
+
541  std::ostream& print_on( std::ostream& os) const
+
542  {
+
543  os << index;
+
544  return os;
+
545  }
+
546  };
547 
-
551  fg_256(const fg&) : color_256(ground::fore, -1) {}
+
549  struct fg_256 : public color_256 {
+
551  fg_256() : color_256(ground::fore) {}
552 
-
553  } fore_256;
-
554 
-
556  struct bg_256 : public color_256 {
-
558  bg_256() : color_256(ground::back) {}
-
559 
-
563  bg_256(const short b) : color_256(ground::back, b) {}
+
556  fg_256(const short f) : color_256(ground::fore, f) {}
+
557 
+
561  fg_256(const fg&) : color_256(ground::fore, -1) {}
+
562 
+
563  } fore_256;
564 
-
568  bg_256(const bg&) : color_256(ground::back, -1) {}
+
566  struct bg_256 : public color_256 {
+
568  bg_256() : color_256(ground::back) {}
569 
-
570  } back_256;
-
571 
-
573  struct color_16M : public color {
-
577  short red, green, blue;
-
578 
-
582  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
-
583 
-
591  color_16M(ground t, short r, short g, short b)
-
592  : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
+
573  bg_256(const short b) : color_256(ground::back, b) {}
+
574 
+
578  bg_256(const bg&) : color_256(ground::back, -1) {}
+
579 
+
580  } back_256;
+
581 
+
583  struct color_16M : public color {
+
587  short red, green, blue;
+
588 
+
592  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
593 
-
601  color_16M(ground t, const std::string& srgb) : color(ansi::colors_16M, t)
-
602  {
-
603  assert(srgb.size() == 7);
-
604  if(srgb.size() != 7) {
-
605  red = -1;
-
606  green = -1;
-
607  blue = -1;
-
608  } else {
-
609  char i = 0;
-
610  if(srgb.at(0) == '#') {
-
611  i = 1;
-
612  }
-
613  std::istringstream(srgb.substr(0+i,2)) >> std::hex >> red;
-
614  std::istringstream(srgb.substr(2+i,2)) >> std::hex >> green;
-
615  std::istringstream(srgb.substr(4+i,2)) >> std::hex >> blue;
-
616  }
-
617  assert(-1 <= red and red <= 255);
-
618  assert(-1 <= green and green <= 255);
-
619  assert(-1 <= blue and blue <= 255);
-
620  }
-
621 
-
623  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
-
624 
-
626  std::ostream& print_on( std::ostream& os) const
-
627  {
-
628  os << red << ";" << green << ";" << blue;
-
629  return os;
+
601  color_16M(ground t, short r, short g, short b)
+
602  : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
+
603 
+
611  color_16M(ground t, const std::string& srgb) : color(ansi::colors_16M, t)
+
612  {
+
613  assert(srgb.size() == 7);
+
614  if(srgb.size() != 7) {
+
615  red = -1;
+
616  green = -1;
+
617  blue = -1;
+
618  } else {
+
619  char i = 0;
+
620  if(srgb.at(0) == '#') {
+
621  i = 1;
+
622  }
+
623  std::istringstream(srgb.substr(0+i,2)) >> std::hex >> red;
+
624  std::istringstream(srgb.substr(2+i,2)) >> std::hex >> green;
+
625  std::istringstream(srgb.substr(4+i,2)) >> std::hex >> blue;
+
626  }
+
627  assert(-1 <= red and red <= 255);
+
628  assert(-1 <= green and green <= 255);
+
629  assert(-1 <= blue and blue <= 255);
630  }
-
631  };
-
632 
-
634  struct fg_16M : public color_16M {
-
636  fg_16M() : color_16M(ground::fore) {}
-
637 
-
646  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
+
631 
+
633  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
+
634 
+
636  std::ostream& print_on( std::ostream& os) const
+
637  {
+
638  os << red << ";" << green << ";" << blue;
+
639  return os;
+
640  }
+
641  };
+
642 
+
644  struct fg_16M : public color_16M {
+
646  fg_16M() : color_16M(ground::fore) {}
647 
-
654  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
-
655 
-
659  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
-
660 
-
661  } fore_16M;
-
662 
-
664  struct bg_16M : public color_16M {
-
666  bg_16M() : color_16M(ground::back) {}
-
667 
-
676  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
+
656  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
+
657 
+
664  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
+
665 
+
669  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
+
670 
+
671  } fore_16M;
+
672 
+
674  struct bg_16M : public color_16M {
+
676  bg_16M() : color_16M(ground::back) {}
677 
-
684  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
-
685 
-
689  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
-
690 
-
691  } back_16M;
-
692 
-
695  public:
-
697  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
-
698 
-
701  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
702  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
703  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
704  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
705  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
706  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
711  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
-
712  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
-
713  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
-
718  fmt(const short fr, const short fg, const short fb,
-
719  const short gr, const short gg, const short gb,
-
720  typo s = typo::none)
-
721  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
-
722  fmt(fg,
-
723  const short gr, const short gg, const short gb,
-
724  typo s = typo::none)
-
725  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
-
726  fmt(const short fr, const short fg, const short fb,
-
727  bg, typo s = typo::none)
-
728  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
-
729  fmt(const short fr, const short fg, const short fb,
+
686  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
+
687 
+
694  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
+
695 
+
699  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
+
700 
+
701  } back_16M;
+
702 
+
705  public:
+
707  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
+
708 
+
711  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
712  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
713  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
714  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
715  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
716  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
721  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
+
722  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
+
723  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
+
728  fmt(const short fr, const short fg, const short fb,
+
729  const short gr, const short gg, const short gb,
730  typo s = typo::none)
-
731  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
-
732 
-
733  fmt(const std::string& f, const std::string& b, typo s = typo::none)
-
734  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
-
735  fmt(fg, const std::string& b, typo s = typo::none)
-
736  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
-
737  fmt(const std::string& f, bg, typo s = typo::none)
-
738  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
-
739  fmt(const std::string& f, typo s = typo::none)
-
740  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
-
743  protected:
-
744 
-
746  std::ostream& print_on( std::ostream& os) const
-
747  {
-
748  if(mode == ansi::colors_16) {
-
749  // Print all in a single escape.
-
750  os << std::make_tuple(fore,back,style);
-
751 
-
752  } else {
-
753  // 256 or 16M: always print separated escapes for foreground/background.
-
754  if(mode == ansi::colors_256) {
-
755  os << fore_256;
-
756  os << back_256;
-
757 
-
758  } else if(mode == ansi::colors_16M) {
-
759  os << fore_16M;
-
760  os << back_16M;
-
761  }
-
762  // In any case, print the style separately.
-
763  os << style;
-
764  }
-
765  return os;
-
766  }
+
731  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
+
732  fmt(fg,
+
733  const short gr, const short gg, const short gb,
+
734  typo s = typo::none)
+
735  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
+
736  fmt(const short fr, const short fg, const short fb,
+
737  bg, typo s = typo::none)
+
738  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
+
739  fmt(const short fr, const short fg, const short fb,
+
740  typo s = typo::none)
+
741  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
+
742 
+
743  fmt(const std::string& f, const std::string& b, typo s = typo::none)
+
744  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
+
745  fmt(fg, const std::string& b, typo s = typo::none)
+
746  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
+
747  fmt(const std::string& f, bg, typo s = typo::none)
+
748  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
+
749  fmt(const std::string& f, typo s = typo::none)
+
750  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
+
753  protected:
+
754 
+
756  std::ostream& print_on( std::ostream& os) const
+
757  {
+
758  if(mode == ansi::colors_16) {
+
759  // Print all in a single escape.
+
760  os << std::make_tuple(fore,back,style);
+
761 
+
762  } else {
+
763  // 256 or 16M: always print separated escapes for foreground/background.
+
764  if(mode == ansi::colors_256) {
+
765  os << fore_256;
+
766  os << back_256;
767 
-
768  public:
-
780  friend std::ostream& operator<<(std::ostream& os, const fmt& fmt)
-
781  {
-
782  return fmt.print_on(os);
-
783  }
-
784 
-
795  std::string operator()( const std::string& msg ) const
-
796  {
-
797  std::ostringstream os;
-
798  this->print_on(os);
-
799  fmt reset(fmt::typo::reset);
-
800  os << msg;
-
801  reset.print_on(os);
-
802  return os.str();
-
803  }
-
804 
-
807  std::string str() const
-
808  {
-
809  std::ostringstream os;
-
810  this->print_on(os);
-
811  return os.str();
-
812  }
-
813 
-
814  static fmt hash( const std::string& str, const std::vector<fmt> domain = {})
-
815  {
-
816  size_t h = std::hash<std::string>{}(str);
-
817  if(domain.size() == 0) {
-
818  return fmt(static_cast<short>(h % 256));
-
819  } else {
-
820  return fmt(domain[h % domain.size()]);
-
821  }
+
768  } else if(mode == ansi::colors_16M) {
+
769  os << fore_16M;
+
770  os << back_16M;
+
771  }
+
772  // In any case, print the style separately.
+
773  os << style;
+
774  }
+
775  return os;
+
776  }
+
777 
+
778  public:
+
790  friend std::ostream& operator<<(std::ostream& os, const fmt& fmt)
+
791  {
+
792  return fmt.print_on(os);
+
793  }
+
794 
+
805  std::string operator()( const std::string& msg ) const
+
806  {
+
807  std::ostringstream os;
+
808  this->print_on(os);
+
809  fmt reset(fmt::typo::reset);
+
810  os << msg;
+
811  reset.print_on(os);
+
812  return os.str();
+
813  }
+
814 
+
817  std::string str() const
+
818  {
+
819  std::ostringstream os;
+
820  this->print_on(os);
+
821  return os.str();
822  }
-
823  }; // fmt class
-
824 
-
830  public:
-
831  clutchlog(clutchlog const&) = delete;
-
832  void operator=(clutchlog const&) = delete;
-
833 
-
834  private:
-
835  clutchlog() :
-
836  // system, main, log
- -
838  _level_word({
-
839  {level::critical,"Critical"},
-
840  {level::error ,"Error"},
-
841  {level::warning ,"Warning"},
-
842  {level::progress,"Progress"},
-
843  {level::note ,"Note"},
-
844  {level::info ,"Info"},
-
845  {level::debug ,"Debug"},
-
846  {level::xdebug ,"XDebug"}
-
847  }),
-
848  _level_short({
-
849  {level::critical, "Crit"},
-
850  {level::error , "Erro"},
-
851  {level::warning , "Warn"},
-
852  {level::progress, "Prog"},
-
853  {level::note , "Note"},
-
854  {level::info , "Info"},
-
855  {level::debug , "Dbug"},
-
856  {level::xdebug , "XDbg"}
+
823 
+
824  static fmt hash( const std::string& str, const std::vector<fmt> domain = {})
+
825  {
+
826  size_t h = std::hash<std::string>{}(str);
+
827  if(domain.size() == 0) {
+
828  return fmt(static_cast<short>(h % 256));
+
829  } else {
+
830  return fmt(domain[h % domain.size()]);
+
831  }
+
832  }
+
833  }; // fmt class
+
834 
+
840  public:
+
841  clutchlog(clutchlog const&) = delete;
+
842  void operator=(clutchlog const&) = delete;
+
843 
+
844  private:
+
845  clutchlog() :
+
846  // system, main, log
+ +
848  _level_word({
+
849  {level::critical,"Critical"},
+
850  {level::error ,"Error"},
+
851  {level::warning ,"Warning"},
+
852  {level::progress,"Progress"},
+
853  {level::note ,"Note"},
+
854  {level::info ,"Info"},
+
855  {level::debug ,"Debug"},
+
856  {level::xdebug ,"XDebug"}
857  }),
-
858  _level_fmt({
-
859  {level::critical,fmt(fmt::fg::red, fmt::typo::underline)},
-
860  {level::error ,fmt(fmt::fg::red, fmt::typo::bold)},
-
861  {level::warning ,fmt(fmt::fg::magenta, fmt::typo::bold)},
-
862  {level::progress,fmt()},
-
863  {level::note ,fmt()},
-
864  {level::info ,fmt()},
-
865  {level::debug ,fmt()},
-
866  {level::xdebug ,fmt()}
+
858  _level_short({
+
859  {level::critical, "Crit"},
+
860  {level::error , "Erro"},
+
861  {level::warning , "Warn"},
+
862  {level::progress, "Prog"},
+
863  {level::note , "Note"},
+
864  {level::info , "Info"},
+
865  {level::debug , "Dbug"},
+
866  {level::xdebug , "XDbg"}
867  }),
- - -
870  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
-
871  _hfill_char(clutchlog::default_hfill_char),
-
872  _hfill_fmt(fmt::fg::none),
-
873  _hfill_max(clutchlog::default_hfill_max),
-
874  _hfill_min(clutchlog::default_hfill_min),
-
875  #endif
-
876  _out(&std::clog),
-
877  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
878  _depth(std::numeric_limits<size_t>::max() - _strip_calls),
-
879  _depth_mark(clutchlog::default_depth_mark),
-
880  #endif
-
881  _stage(level::error),
-
882  _in_file(".*"),
-
883  _in_func(".*"),
-
884  _in_line(".*")
-
885  // Empty vectors by default:
-
886  // _filehash_fmts
-
887  // _funchash_fmts
-
888  // _depth_fmts
-
889  {
-
890  // Reverse the level->word map into a word->level map.
-
891  for(auto& lw : _level_word) {
-
892  _word_level[lw.second] = lw.first;
-
893  }
-
894 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
-
895  struct winsize w;
-
896  ioctl(STDERR_FILENO, TIOCGWINSZ, &w);
-
897  _nb_columns = std::max(std::min((size_t)w.ws_col, default_hfill_max), default_hfill_min);
-
898 #endif
-
899  }
-
900 
-
901  protected:
-
903  size_t _strip_calls;
-
905  const std::map<level,std::string> _level_word;
-
907  std::map<std::string,level> _word_level;
-
909  std::map<level,std::string> _level_short;
-
911  std::map<level,fmt> _level_fmt;
-
913  std::string _format_log;
-
915  std::string _format_dump;
-
916  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
-
917 
-
918  char _hfill_char;
-
920  fmt _hfill_fmt;
-
922  size_t _hfill_max;
-
924  size_t _hfill_min;
-
925  #endif
-
926 
-
927  std::ostream* _out;
-
928  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
929 
-
930  size_t _depth;
-
932  std::string _depth_mark;
-
933  #endif
-
934 
- -
937  std::regex _in_file;
-
939  std::regex _in_func;
-
941  std::regex _in_line;
-
942 
-
944  std::vector<fmt> _filehash_fmts;
-
946  std::vector<fmt> _funchash_fmts;
-
947 
-
948 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
949 
-
950  static const size_t _max_buffer = 4096;
-
952  std::vector<fmt> _depth_fmts;
-
953 #endif
-
954 
-
955 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
-
956 
-
957  size_t _nb_columns;
-
958 #endif
+
868  _level_fmt({
+
869  {level::critical,fmt(fmt::fg::red, fmt::typo::underline)},
+
870  {level::error ,fmt(fmt::fg::red, fmt::typo::bold)},
+
871  {level::warning ,fmt(fmt::fg::magenta, fmt::typo::bold)},
+
872  {level::progress,fmt()},
+
873  {level::note ,fmt()},
+
874  {level::info ,fmt()},
+
875  {level::debug ,fmt()},
+
876  {level::xdebug ,fmt()}
+
877  }),
+ + +
880  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
+
881  _hfill_char(clutchlog::default_hfill_char),
+
882  _hfill_fmt(fmt::fg::none),
+
883  _hfill_max(clutchlog::default_hfill_max),
+
884  _hfill_min(clutchlog::default_hfill_min),
+
885  #endif
+
886  _out(&std::clog),
+
887  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
888  _depth(std::numeric_limits<size_t>::max() - _strip_calls),
+
889  _depth_mark(clutchlog::default_depth_mark),
+
890  #endif
+
891  _stage(level::error),
+
892  _in_file(".*"),
+
893  _in_func(".*"),
+
894  _in_line(".*")
+
895  // Empty vectors by default:
+
896  // _filehash_fmts
+
897  // _funchash_fmts
+
898  // _depth_fmts
+
899  {
+
900  // Reverse the level->word map into a word->level map.
+
901  for(auto& lw : _level_word) {
+
902  _word_level[lw.second] = lw.first;
+
903  }
+
904 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
+
905  struct winsize w;
+
906  ioctl(STDERR_FILENO, TIOCGWINSZ, &w);
+
907  _nb_columns = std::max(std::min((size_t)w.ws_col, default_hfill_max), default_hfill_min);
+
908 #endif
+
909  }
+
910 
+
911  protected:
+
913  size_t _strip_calls;
+
915  const std::map<level,std::string> _level_word;
+
917  std::map<std::string,level> _word_level;
+
919  std::map<level,std::string> _level_short;
+
921  std::map<level,fmt> _level_fmt;
+
923  std::string _format_log;
+
925  std::string _format_dump;
+
926  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
+
927 
+
928  char _hfill_char;
+
930  fmt _hfill_fmt;
+
932  size_t _hfill_max;
+
934  size_t _hfill_min;
+
935  #endif
+
936 
+
937  std::ostream* _out;
+
938  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
939 
+
940  size_t _depth;
+
942  std::string _depth_mark;
+
943  #endif
+
944 
+ +
947  std::regex _in_file;
+
949  std::regex _in_func;
+
951  std::regex _in_line;
+
952 
+
954  std::vector<fmt> _filehash_fmts;
+
956  std::vector<fmt> _funchash_fmts;
+
957 
+
958 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
959 
-
961  public:
-
962 
-
966  void format(const std::string& format) {_format_log = format;}
-
969  std::string format() const {return _format_log;}
-
970 
-
972  void format_comment(const std::string& format) {_format_dump = format;}
-
974  std::string format_comment() const {return _format_dump;}
-
975 
-
977  void out(std::ostream& out) {_out = &out;}
-
979  std::ostream& out() {return *_out;}
+
960  static const size_t _max_buffer = 4096;
+
962  std::vector<fmt> _depth_fmts;
+
963 #endif
+
964 
+
965 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
+
966 
+
967  size_t _nb_columns;
+
968 #endif
+
969 
+
971  public:
+
972 
+
976  void format(const std::string& format) {_format_log = format;}
+
979  std::string format() const {return _format_log;}
980 
-
981 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
982  void depth(size_t d) {_depth = d;}
-
985  size_t depth() const {return _depth;}
-
986 
-
988  void depth_mark(const std::string mark) {_depth_mark = mark;}
-
990  std::string depth_mark() const {return _depth_mark;}
-
991 
-
993  void strip_calls(const size_t n) {_strip_calls = n;}
-
995  size_t strip_calls() const {return _strip_calls;}
-
996 #endif
-
997 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
-
998  void hfill_mark(const char mark) {_hfill_char = mark;}
-
1001  char hfill_mark() const {return _hfill_char;}
-
1003  void hfill_style(fmt style) {_hfill_fmt = style;}
-
1008  template<class ... FMT>
-
1009  void hfill_style(FMT... styles) { this->hfill_style(fmt(styles...)); }
-
1011  fmt hfill_style() const {return _hfill_fmt;}
-
1013  void hfill_max(const size_t nmax) {_hfill_max = nmax;}
-
1015  size_t hfill_max() {return _hfill_max;}
-
1017  void hfill_min(const size_t nmin) {_hfill_min = nmin;}
-
1019  size_t hfill_min() {return _hfill_min;}
-
1020 #endif
-
1021 
-
1028  void filehash_styles(std::vector<fmt> styles) {_filehash_fmts = styles;}
-
1036  void funchash_styles(std::vector<fmt> styles) {_funchash_fmts = styles;}
-
1045  void depth_styles(std::vector<fmt> styles) {_depth_fmts = styles;}
-
1046 
-
1048  void threshold(level l) {_stage = l;}
-
1050  void threshold(const std::string& l) {_stage = this->level_of(l);}
-
1052  level threshold() const {return _stage;}
-
1054  const std::map<std::string,level>& levels() const { return _word_level;}
-
1055 
-
1060  level level_of(const std::string name)
-
1061  {
-
1062  const auto ilevel = _word_level.find(name);
-
1063  if( ilevel != std::end(_word_level)) {
-
1064  return ilevel->second;
-
1065  } else {
-
1066  throw std::out_of_range("'" + name + "' is not a valid log level name");
-
1067  }
-
1068  }
-
1069 
-
1071  void file(std::string file) {_in_file = file;}
-
1073  void func(std::string func) {_in_func = func;}
-
1075  void line(std::string line) {_in_line = line;}
-
1076 
-
1078  void location(
-
1079  const std::string& in_file,
-
1080  const std::string& in_function=".*",
-
1081  const std::string& in_line=".*"
-
1082  )
-
1083  {
-
1084  file(in_file);
-
1085  func(in_function);
-
1086  line(in_line);
-
1087  }
-
1088 
-
1093  template<class ... FMT>
-
1094  void style(level stage, FMT... styles) { this->style(stage,fmt(styles...)); }
-
1096  void style(level stage, fmt style) { _level_fmt.at(stage) = style; }
-
1098  fmt style(level stage) const { return _level_fmt.at(stage); }
-
1099 
-
1102  public:
-
1103 
-
1107  struct scope_t {
-
1110  bool matches;
- -
1113 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
1114 
-
1115  size_t depth;
-
1116 #endif
-
1117 
-
1118  bool there;
- -
1121  matches(false),
-
1122  stage(level::xdebug),
- -
1124  depth(0),
-
1125 #endif
-
1126  there(false)
-
1127  {}
-
1128  }; // scope_t
-
1129 
-
1130 
- -
1133  const level& stage,
-
1134  const std::string& file,
-
1135  const std::string& func,
-
1136  const size_t line
-
1137  ) const
-
1138  {
-
1139  scope_t scope; // False scope by default.
+
982  void format_comment(const std::string& format) {_format_dump = format;}
+
984  std::string format_comment() const {return _format_dump;}
+
985 
+
987  void out(std::ostream& out) {_out = &out;}
+
989  std::ostream& out() {return *_out;}
+
990 
+
991 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
992  void depth(size_t d) {_depth = d;}
+
995  size_t depth() const {return _depth;}
+
996 
+
998  void depth_mark(const std::string mark) {_depth_mark = mark;}
+
1000  std::string depth_mark() const {return _depth_mark;}
+
1001 
+
1003  void strip_calls(const size_t n) {_strip_calls = n;}
+
1005  size_t strip_calls() const {return _strip_calls;}
+
1006 #endif
+
1007 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
+
1008  void hfill_mark(const char mark) {_hfill_char = mark;}
+
1011  char hfill_mark() const {return _hfill_char;}
+
1013  void hfill_style(fmt style) {_hfill_fmt = style;}
+
1018  template<class ... FMT>
+
1019  void hfill_style(FMT... styles) { this->hfill_style(fmt(styles...)); }
+
1021  fmt hfill_style() const {return _hfill_fmt;}
+
1023  void hfill_max(const size_t nmax) {_hfill_max = nmax;}
+
1025  size_t hfill_max() {return _hfill_max;}
+
1027  void hfill_min(const size_t nmin) {_hfill_min = nmin;}
+
1029  size_t hfill_min() {return _hfill_min;}
+
1030 #endif
+
1031 
+
1038  void filehash_styles(std::vector<fmt> styles) {_filehash_fmts = styles;}
+
1046  void funchash_styles(std::vector<fmt> styles) {_funchash_fmts = styles;}
+
1055  void depth_styles(std::vector<fmt> styles) {_depth_fmts = styles;}
+
1056 
+
1058  void threshold(level l) {_stage = l;}
+
1060  void threshold(const std::string& l) {_stage = this->level_of(l);}
+
1062  level threshold() const {return _stage;}
+
1064  const std::map<std::string,level>& levels() const { return _word_level;}
+
1065 
+
1070  level level_of(const std::string name)
+
1071  {
+
1072  const auto ilevel = _word_level.find(name);
+
1073  if( ilevel != std::end(_word_level)) {
+
1074  return ilevel->second;
+
1075  } else {
+
1076  throw std::out_of_range("'" + name + "' is not a valid log level name");
+
1077  }
+
1078  }
+
1079 
+
1081  void file(std::string file) {_in_file = file;}
+
1083  void func(std::string func) {_in_func = func;}
+
1085  void line(std::string line) {_in_line = line;}
+
1086 
+
1088  void location(
+
1089  const std::string& in_file,
+
1090  const std::string& in_function=".*",
+
1091  const std::string& in_line=".*"
+
1092  )
+
1093  {
+
1094  file(in_file);
+
1095  func(in_function);
+
1096  line(in_line);
+
1097  }
+
1098 
+
1103  template<class ... FMT>
+
1104  void style(level stage, FMT... styles) { this->style(stage,fmt(styles...)); }
+
1106  void style(level stage, fmt style) { _level_fmt.at(stage) = style; }
+
1108  fmt style(level stage) const { return _level_fmt.at(stage); }
+
1109 
+
1112  public:
+
1113 
+
1117  struct scope_t {
+
1120  bool matches;
+ +
1123 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
1124 
+
1125  size_t depth;
+
1126 #endif
+
1127 
+
1128  bool there;
+ +
1131  matches(false),
+
1132  stage(level::xdebug),
+ +
1134  depth(0),
+
1135 #endif
+
1136  there(false)
+
1137  {}
+
1138  }; // scope_t
+
1139 
1140 
-
1141  /***** Log level stage *****/
-
1142  // Test stage first, because it's fastest.
-
1143  scope.stage = stage;
-
1144  if(not (scope.stage <= _stage)) {
-
1145  // Bypass useless computations if no match
-
1146  // because of the stage.
-
1147  return scope;
-
1148  }
-
1149 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
1150  /***** Stack depth *****/
-
1151  // Backtrace in second, quite fast.
-
1152  size_t stack_depth;
-
1153  void *buffer[_max_buffer];
-
1154  stack_depth = backtrace(buffer, _max_buffer);
-
1155  scope.depth = stack_depth;
-
1156  if(not (scope.depth <= _depth + _strip_calls)) {
-
1157  // Bypass if no match.
-
1158  return scope;
-
1159  }
-
1160 #endif
-
1161 
-
1162  /***** Location *****/
-
1163  // Location last, slowest.
-
1164  std::ostringstream sline; sline << line;
-
1165  scope.there =
-
1166  std::regex_search(file, _in_file)
-
1167  and std::regex_search(func, _in_func)
-
1168  and std::regex_search(sline.str(), _in_line);
-
1169 
-
1170  // No need to retest stage and depth, which are true here.
-
1171  scope.matches = scope.there;
-
1172 
-
1173  return scope;
-
1174  } // locate
-
1175 
-
1183  std::string replace(
-
1184  const std::string& form,
-
1185  const std::string& mark,
-
1186  const std::string& tag
-
1187  ) const
-
1188  {
-
1189  // Useless debug code, unless something fancy would be done with name tags.
-
1190  // std::regex re;
-
1191  // try {
-
1192  // re = std::regex(mark);
-
1193  //
-
1194  // } catch(const std::regex_error& e) {
-
1195  // std::cerr << "ERROR with a regular expression \"" << mark << "\": ";
-
1196  // switch(e.code()) {
-
1197  // case std::regex_constants::error_collate:
-
1198  // std::cerr << "the expression contains an invalid collating element name";
-
1199  // break;
-
1200  // case std::regex_constants::error_ctype:
-
1201  // std::cerr << "the expression contains an invalid character class name";
-
1202  // break;
-
1203  // case std::regex_constants::error_escape:
-
1204  // std::cerr << "the expression contains an invalid escaped character or a trailing escape";
-
1205  // break;
-
1206  // case std::regex_constants::error_backref:
-
1207  // std::cerr << "the expression contains an invalid back reference";
-
1208  // break;
-
1209  // case std::regex_constants::error_brack:
-
1210  // std::cerr << "the expression contains mismatched square brackets ('[' and ']')";
-
1211  // break;
-
1212  // case std::regex_constants::error_paren:
-
1213  // std::cerr << "the expression contains mismatched parentheses ('(' and ')')";
-
1214  // break;
-
1215  // case std::regex_constants::error_brace:
-
1216  // std::cerr << "the expression contains mismatched curly braces ('{' and '}')";
-
1217  // break;
-
1218  // case std::regex_constants::error_badbrace:
-
1219  // std::cerr << "the expression contains an invalid range in a {} expression";
-
1220  // break;
-
1221  // case std::regex_constants::error_range:
-
1222  // std::cerr << "the expression contains an invalid character range (e.g. [b-a])";
-
1223  // break;
-
1224  // case std::regex_constants::error_space:
-
1225  // std::cerr << "there was not enough memory to convert the expression into a finite state machine";
-
1226  // break;
-
1227  // case std::regex_constants::error_badrepeat:
-
1228  // std::cerr << "one of *?+{ was not preceded by a valid regular expression";
-
1229  // break;
-
1230  // case std::regex_constants::error_complexity:
-
1231  // std::cerr << "the complexity of an attempted match exceeded a predefined level";
-
1232  // break;
-
1233  // case std::regex_constants::error_stack:
-
1234  // std::cerr << "there was not enough memory to perform a match";
-
1235  // break;
-
1236  // default:
-
1237  // std::cerr << "unknown error";
-
1238  // }
-
1239  // std::cerr << std::endl;
-
1240  // throw;
-
1241  // } // catch
-
1242 
-
1243  const std::regex re(mark);
-
1244  return std::regex_replace(form, re, tag);
-
1245  }
-
1246 
-
1248  std::string replace(
-
1249  const std::string& form,
-
1250  const std::string& mark,
-
1251  const size_t tag
-
1252  ) const
-
1253  {
-
1254  std::ostringstream stag; stag << tag;
-
1255  return replace(form, mark, stag.str());
-
1256  }
-
1257 
-
1259  std::string format(
-
1260  std::string row,
-
1261  const std::string& what,
- -
1263  const std::string& name,
-
1264 #endif
-
1265  const level& stage,
-
1266  const std::string& file,
-
1267  const std::string& func,
-
1268  const size_t line
- -
1270  ,
-
1271  const size_t depth
-
1272 #endif
-
1273  ) const
-
1274  {
-
1275  row = replace(row, "\\{msg\\}", what);
-
1276  row = replace(row, "\\{file\\}", file);
-
1277  row = replace(row, "\\{func\\}", func);
-
1278  row = replace(row, "\\{line\\}", line);
-
1279 
-
1280  row = replace(row, "\\{level\\}", _level_word.at(stage));
-
1281  std::string letter(1, _level_word.at(stage).at(0)); // char -> string
-
1282  row = replace(row, "\\{level_letter\\}", letter);
-
1283 
-
1284  row = replace(row, "\\{level_short\\}", _level_short.at(stage));
-
1285 
-
1286 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
1287  size_t actual_depth = depth - _strip_calls;
-
1288  row = replace(row, "\\{name\\}", name);
-
1289  row = replace(row, "\\{depth\\}", actual_depth);
-
1290 
-
1291  std::ostringstream chevrons;
-
1292  for(size_t i = _strip_calls; i < depth; ++i) {
-
1293  chevrons << _depth_mark;
-
1294  }
-
1295  row = replace(row, "\\{depth_marks\\}", chevrons.str());
-
1296 
-
1297  if(_depth_fmts.size() == 0) {
-
1298  row = replace(row, "\\{depth_fmt\\}", fmt(actual_depth % 256).str() );
-
1299  } else {
-
1300  row = replace(row, "\\{depth_fmt\\}",
-
1301  _depth_fmts[std::min(actual_depth,_depth_fmts.size()-1)].str() );
-
1302  }
-
1303 #endif
-
1304  row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str());
-
1305  row = replace(row, "\\{filehash_fmt\\}", fmt::hash(file, _filehash_fmts).str() );
-
1306  row = replace(row, "\\{funchash_fmt\\}", fmt::hash(func, _funchash_fmts).str() );
-
1307 
-
1308 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
-
1309  // hfill is replaced last to allow for correct line width estimation.
-
1310  const std::string raw_row = replace(row, "\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]", "");
-
1311  const std::string hfill_tag = "{hfill}";
-
1312  const size_t hfill_pos = row.find(hfill_tag);
-
1313  const size_t raw_hfill_pos = raw_row.find(hfill_tag);
-
1314  const size_t nb_columns = std::max(std::min((size_t)_nb_columns, _hfill_max), _hfill_min);
-
1315  if(hfill_pos != std::string::npos) {
-
1316  assert(raw_hfill_pos != std::string::npos);
-
1317  if(nb_columns > 0) {
-
1318  const size_t left_len = raw_hfill_pos;
-
1319  const size_t right_len = raw_row.size() - raw_hfill_pos - hfill_tag.size();
-
1320  if(right_len+left_len > nb_columns) {
-
1321  // The right part would go over the terminal width: add a new row.
-
1322  if(right_len < nb_columns) {
-
1323  // There is room for the right part on a new line.
-
1324  const std::string hfill(std::max((size_t)0, nb_columns-right_len), _hfill_char);
-
1325  const std::string hfill_styled = _hfill_fmt(hfill);
-
1326  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
-
1327  } else {
-
1328  // Right part still goes over columns: let it go.
-
1329  const std::string hfill(1, _hfill_char);
-
1330  const std::string hfill_styled = _hfill_fmt(hfill);
-
1331  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
-
1332  }
-
1333  } else {
-
1334  // There is some space in between left and right parts.
-
1335  const std::string hfill(std::max((size_t)0, nb_columns - (right_len+left_len)), _hfill_char);
-
1336  const std::string hfill_styled = _hfill_fmt(hfill);
-
1337  row = replace(row, "\\{hfill\\}", hfill_styled);
-
1338  }
-
1339  } else {
-
1340  // We don't know the terminal width.
-
1341  const std::string hfill(1, _hfill_char);
-
1342  const std::string hfill_styled = _hfill_fmt(hfill);
-
1343  row = replace(row, "\\{hfill\\}", hfill_styled);
-
1344  }
-
1345  }
-
1346 #else
-
1347  // We cannot know the terminal width.
-
1348  const std::string hfill(1, _hfill_char);
-
1349  const std::string hfill_styled = _hfill_fmt(hfill);
-
1350  row = replace(row, "\\{hfill\\}", hfill_styled);
-
1351 #endif
-
1352  return _level_fmt.at(stage)(row);
-
1353  }
-
1354 
-
1356  void log(
-
1357  const level& stage,
-
1358  const std::string& what,
-
1359  const std::string& file, const std::string& func, size_t line
-
1360  ) const
-
1361  {
-
1362  scope_t scope = locate(stage, file, func, line);
-
1363 
-
1364  if(scope.matches) {
-
1365 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
1366  *_out << format(_format_log, what, basename(getenv("_")),
-
1367  stage, file, func,
-
1368  line, scope.depth );
-
1369 #else
-
1370  *_out << format(_format_log, what,
-
1371  stage, file, func,
-
1372  line );
-
1373 
-
1374 #endif
-
1375  _out->flush();
-
1376  } // if scopes.matches
-
1377  }
-
1378 
-
1380  template<class In>
-
1381  void dump(
-
1382  const level& stage,
-
1383  const In container_begin, const In container_end,
-
1384  const std::string& file, const std::string& func, size_t line,
-
1385  const std::string& filename_template = "dump_{n}.dat",
-
1386  const std::string sep = dump_default_sep
-
1387  ) const
-
1388  {
-
1389  scope_t scope = locate(stage, file, func, line);
-
1390 
-
1391  if(scope.matches) {
-
1392  const std::string tag = "\\{n\\}";
-
1393  const std::regex re(tag);
-
1394  std::string outfile = "";
-
1395 
-
1396  // If the file name template has the {n} tag.
-
1397  if(std::regex_search(filename_template, re)) {
-
1398  // Increment n until a free one is found.
-
1399  size_t n = 0;
-
1400  do {
-
1401  outfile = replace(filename_template, tag, n);
-
1402  n++;
-
1403  } while( fs::exists( outfile ) );
-
1404 
-
1405  } else {
-
1406  // Use the parameter as is.
-
1407  outfile = filename_template;
-
1408  }
-
1409 
-
1410  std::ofstream fd(outfile);
-
1411 
-
1412  if(_format_dump.size() > 0) {
-
1413 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
1414  fd << format(_format_dump, "", basename(getenv("_")),
-
1415  stage, file, func,
-
1416  line, scope.depth );
-
1417 #else
-
1418  fd << format(_format_dump, "",
-
1419  stage, file, func,
-
1420  line );
-
1421 #endif
-
1422  fd << sep; // sep after comment line.
-
1423  }
-
1424 
-
1425  std::copy(container_begin, container_end,
-
1426  std::ostream_iterator<typename In::value_type>(fd, sep.c_str()));
+ +
1143  const level& stage,
+
1144  const std::string& file,
+
1145  const std::string& func,
+
1146  const size_t line
+
1147  ) const
+
1148  {
+
1149  scope_t scope; // False scope by default.
+
1150 
+
1151  /***** Log level stage *****/
+
1152  // Test stage first, because it's fastest.
+
1153  scope.stage = stage;
+
1154  if(not (scope.stage <= _stage)) {
+
1155  // Bypass useless computations if no match
+
1156  // because of the stage.
+
1157  return scope;
+
1158  }
+
1159 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
1160  /***** Stack depth *****/
+
1161  // Backtrace in second, quite fast.
+
1162  size_t stack_depth;
+
1163  void *buffer[_max_buffer];
+
1164  stack_depth = backtrace(buffer, _max_buffer);
+
1165  scope.depth = stack_depth;
+
1166  if(not (scope.depth <= _depth + _strip_calls)) {
+
1167  // Bypass if no match.
+
1168  return scope;
+
1169  }
+
1170 #endif
+
1171 
+
1172  /***** Location *****/
+
1173  // Location last, slowest.
+
1174  std::ostringstream sline; sline << line;
+
1175  scope.there =
+
1176  std::regex_search(file, _in_file)
+
1177  and std::regex_search(func, _in_func)
+
1178  and std::regex_search(sline.str(), _in_line);
+
1179 
+
1180  // No need to retest stage and depth, which are true here.
+
1181  scope.matches = scope.there;
+
1182 
+
1183  return scope;
+
1184  } // locate
+
1185 
+
1193  std::string replace(
+
1194  const std::string& form,
+
1195  const std::string& mark,
+
1196  const std::string& tag
+
1197  ) const
+
1198  {
+
1199  // Useless debug code, unless something fancy would be done with name tags.
+
1200  // std::regex re;
+
1201  // try {
+
1202  // re = std::regex(mark);
+
1203  //
+
1204  // } catch(const std::regex_error& e) {
+
1205  // std::cerr << "ERROR with a regular expression \"" << mark << "\": ";
+
1206  // switch(e.code()) {
+
1207  // case std::regex_constants::error_collate:
+
1208  // std::cerr << "the expression contains an invalid collating element name";
+
1209  // break;
+
1210  // case std::regex_constants::error_ctype:
+
1211  // std::cerr << "the expression contains an invalid character class name";
+
1212  // break;
+
1213  // case std::regex_constants::error_escape:
+
1214  // std::cerr << "the expression contains an invalid escaped character or a trailing escape";
+
1215  // break;
+
1216  // case std::regex_constants::error_backref:
+
1217  // std::cerr << "the expression contains an invalid back reference";
+
1218  // break;
+
1219  // case std::regex_constants::error_brack:
+
1220  // std::cerr << "the expression contains mismatched square brackets ('[' and ']')";
+
1221  // break;
+
1222  // case std::regex_constants::error_paren:
+
1223  // std::cerr << "the expression contains mismatched parentheses ('(' and ')')";
+
1224  // break;
+
1225  // case std::regex_constants::error_brace:
+
1226  // std::cerr << "the expression contains mismatched curly braces ('{' and '}')";
+
1227  // break;
+
1228  // case std::regex_constants::error_badbrace:
+
1229  // std::cerr << "the expression contains an invalid range in a {} expression";
+
1230  // break;
+
1231  // case std::regex_constants::error_range:
+
1232  // std::cerr << "the expression contains an invalid character range (e.g. [b-a])";
+
1233  // break;
+
1234  // case std::regex_constants::error_space:
+
1235  // std::cerr << "there was not enough memory to convert the expression into a finite state machine";
+
1236  // break;
+
1237  // case std::regex_constants::error_badrepeat:
+
1238  // std::cerr << "one of *?+{ was not preceded by a valid regular expression";
+
1239  // break;
+
1240  // case std::regex_constants::error_complexity:
+
1241  // std::cerr << "the complexity of an attempted match exceeded a predefined level";
+
1242  // break;
+
1243  // case std::regex_constants::error_stack:
+
1244  // std::cerr << "there was not enough memory to perform a match";
+
1245  // break;
+
1246  // default:
+
1247  // std::cerr << "unknown error";
+
1248  // }
+
1249  // std::cerr << std::endl;
+
1250  // throw;
+
1251  // } // catch
+
1252 
+
1253  const std::regex re(mark);
+
1254  return std::regex_replace(form, re, tag);
+
1255  }
+
1256 
+
1258  std::string replace(
+
1259  const std::string& form,
+
1260  const std::string& mark,
+
1261  const size_t tag
+
1262  ) const
+
1263  {
+
1264  std::ostringstream stag; stag << tag;
+
1265  return replace(form, mark, stag.str());
+
1266  }
+
1267 
+
1269  std::string format(
+
1270  std::string row,
+
1271  const std::string& what,
+ +
1273  const std::string& name,
+
1274 #endif
+
1275  const level& stage,
+
1276  const std::string& file,
+
1277  const std::string& func,
+
1278  const size_t line
+ +
1280  ,
+
1281  const size_t depth
+
1282 #endif
+
1283  ) const
+
1284  {
+
1285  row = replace(row, "\\{msg\\}", what);
+
1286  row = replace(row, "\\{file\\}", file);
+
1287  row = replace(row, "\\{func\\}", func);
+
1288  row = replace(row, "\\{line\\}", line);
+
1289 
+
1290  row = replace(row, "\\{level\\}", _level_word.at(stage));
+
1291  std::string letter(1, _level_word.at(stage).at(0)); // char -> string
+
1292  row = replace(row, "\\{level_letter\\}", letter);
+
1293 
+
1294  row = replace(row, "\\{level_short\\}", _level_short.at(stage));
+
1295 
+
1296 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
1297  size_t actual_depth = depth - _strip_calls;
+
1298  row = replace(row, "\\{name\\}", name);
+
1299  row = replace(row, "\\{depth\\}", actual_depth);
+
1300 
+
1301  if(_depth_fmts.size() == 0) {
+
1302  row = replace(row, "\\{depth_fmt\\}", fmt(actual_depth % 256).str() );
+
1303 
+
1304  std::ostringstream chevrons;
+
1305  for(size_t i = 0; i < actual_depth; ++i) {
+
1306  chevrons << _depth_mark;
+
1307  }
+
1308  row = replace(row, "\\{depth_marks\\}", chevrons.str());
+
1309 
+
1310  } else {
+
1311  row = replace(row, "\\{depth_fmt\\}",
+
1312  _depth_fmts[std::min(actual_depth,_depth_fmts.size()-1)].str() );
+
1313 
+
1314  std::ostringstream chevrons;
+
1315  for(size_t i = 0; i < actual_depth; ++i) {
+
1316  chevrons << _depth_fmts[std::min(i+1,_depth_fmts.size()-1)].str()
+
1317  << _depth_mark;
+
1318  }
+
1319  row = replace(row, "\\{depth_marks\\}", chevrons.str());
+
1320  }
+
1321 #endif
+
1322  row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str());
+
1323  row = replace(row, "\\{filehash_fmt\\}", fmt::hash(file, _filehash_fmts).str() );
+
1324  row = replace(row, "\\{funchash_fmt\\}", fmt::hash(func, _funchash_fmts).str() );
+
1325 
+
1326 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
+
1327  // hfill is replaced last to allow for correct line width estimation.
+
1328  const std::string raw_row = replace(row, "\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]", "");
+
1329  const std::string hfill_tag = "{hfill}";
+
1330  const size_t hfill_pos = row.find(hfill_tag);
+
1331  const size_t raw_hfill_pos = raw_row.find(hfill_tag);
+
1332  const size_t nb_columns = std::max(std::min((size_t)_nb_columns, _hfill_max), _hfill_min);
+
1333  if(hfill_pos != std::string::npos) {
+
1334  assert(raw_hfill_pos != std::string::npos);
+
1335  if(nb_columns > 0) {
+
1336  const size_t left_len = raw_hfill_pos;
+
1337  const size_t right_len = raw_row.size() - raw_hfill_pos - hfill_tag.size();
+
1338  if(right_len+left_len > nb_columns) {
+
1339  // The right part would go over the terminal width: add a new row.
+
1340  if(right_len < nb_columns) {
+
1341  // There is room for the right part on a new line.
+
1342  const std::string hfill(std::max((size_t)0, nb_columns-right_len), _hfill_char);
+
1343  const std::string hfill_styled = _hfill_fmt(hfill);
+
1344  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
+
1345  } else {
+
1346  // Right part still goes over columns: let it go.
+
1347  const std::string hfill(1, _hfill_char);
+
1348  const std::string hfill_styled = _hfill_fmt(hfill);
+
1349  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
+
1350  }
+
1351  } else {
+
1352  // There is some space in between left and right parts.
+
1353  const std::string hfill(std::max((size_t)0, nb_columns - (right_len+left_len)), _hfill_char);
+
1354  const std::string hfill_styled = _hfill_fmt(hfill);
+
1355  row = replace(row, "\\{hfill\\}", hfill_styled);
+
1356  }
+
1357  } else {
+
1358  // We don't know the terminal width.
+
1359  const std::string hfill(1, _hfill_char);
+
1360  const std::string hfill_styled = _hfill_fmt(hfill);
+
1361  row = replace(row, "\\{hfill\\}", hfill_styled);
+
1362  }
+
1363  }
+
1364 #else
+
1365  // We cannot know the terminal width.
+
1366  const std::string hfill(1, _hfill_char);
+
1367  const std::string hfill_styled = _hfill_fmt(hfill);
+
1368  row = replace(row, "\\{hfill\\}", hfill_styled);
+
1369 #endif
+
1370  return _level_fmt.at(stage)(row);
+
1371  }
+
1372 
+
1374  void log(
+
1375  const level& stage,
+
1376  const std::string& what,
+
1377  const std::string& file, const std::string& func, const size_t line,
+
1378  const size_t depth_delta = 0
+
1379  ) const
+
1380  {
+
1381  scope_t scope = locate(stage, file, func, line);
+
1382 
+
1383  if(scope.matches) {
+
1384 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
1385  *_out << format(_format_log, what, basename(getenv("_")),
+
1386  stage, file, func,
+
1387  line, scope.depth + depth_delta );
+
1388 #else
+
1389  *_out << format(_format_log, what,
+
1390  stage, file, func,
+
1391  line );
+
1392 #endif
+
1393  _out->flush();
+
1394  } // if scopes.matches
+
1395  }
+
1396 
+
1398  template<class In>
+
1399  void dump(
+
1400  const level& stage,
+
1401  const In container_begin, const In container_end,
+
1402  const std::string& file, const std::string& func, const size_t line,
+
1403  const std::string& filename_template = "dump_{n}.dat",
+
1404  const std::string sep = dump_default_sep
+
1405  ) const
+
1406  {
+
1407  scope_t scope = locate(stage, file, func, line);
+
1408 
+
1409  if(scope.matches) {
+
1410  const std::string tag = "\\{n\\}";
+
1411  const std::regex re(tag);
+
1412  std::string outfile = "";
+
1413 
+
1414  // If the file name template has the {n} tag.
+
1415  if(std::regex_search(filename_template, re)) {
+
1416  // Increment n until a free one is found.
+
1417  size_t n = 0;
+
1418  do {
+
1419  outfile = replace(filename_template, tag, n);
+
1420  n++;
+
1421  } while( fs::exists( outfile ) );
+
1422 
+
1423  } else {
+
1424  // Use the parameter as is.
+
1425  outfile = filename_template;
+
1426  }
1427 
-
1428  fd.close();
-
1429  } // if scopes.matches
-
1430  }
-
1431 
-
1433 };
-
1434 
-
1437 #else // not WITH_CLUTCHLOG
-
1438 
-
1439 
-
1440 /**********************************************************************
-
1441  * Fake implementation
-
1442  **********************************************************************/
-
1443 
-
1444 // Equivalent class with empty methods, will be optimized out
-
1445 // while allowing to actually have calls implemented without WITH_CLUTCHLOG guards.
-
1446 #pragma GCC diagnostic push
-
1447 #pragma GCC diagnostic ignored "-Wreturn-type"
-
1448 class clutchlog
-
1449 {
-
1450  public:
-
1451  static clutchlog& logger() {}
-
1452  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
-
1453  class fmt {
-
1454  public:
-
1455  enum class ansi { colors_16, colors_256, colors_16M} mode;
-
1456  enum class typo { reset, bold, underline, inverse, none} style;
-
1457  enum class fg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none} fore;
-
1458  enum class bg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none } back;
-
1459  protected:
-
1460  friend std::ostream& operator<<(std::ostream&, const std::tuple<fg,bg,typo>&) {}
-
1461  friend std::ostream& operator<<(std::ostream&, const typo&) {}
-
1462  protected:
-
1463  struct color {
-
1464  ansi mode;
-
1465  enum class ground { fore, back } type;
-
1466  color(ansi a, ground g) : mode(a), type(g) {}
-
1467  virtual bool is_set() const = 0;
-
1468  virtual std::ostream& print_on( std::ostream&) const = 0;
-
1469  friend std::ostream& operator<<(std::ostream&, const color&) {}
-
1470  };
-
1471  struct color_256 : public color {
-
1472  short index;
-
1473  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
-
1474  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {}
-
1475  bool is_set() const {}
-
1476  std::ostream& print_on( std::ostream&) const {}
-
1477  };
-
1478  struct fg_256 : public color_256 {
-
1479  fg_256() : color_256(ground::fore) {}
-
1480  fg_256(const short f) : color_256(ground::fore, f) {}
-
1481  fg_256(const fg&) : color_256(ground::fore, -1) {}
-
1482  } fore_256;
-
1483  struct bg_256 : public color_256 {
-
1484  bg_256() : color_256(ground::back) {}
-
1485  bg_256(const short b) : color_256(ground::back, b) {}
-
1486  bg_256(const bg&) : color_256(ground::back, -1) {}
-
1487  } back_256;
-
1488  struct color_16M : public color {
-
1489  short red, green, blue;
-
1490  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
-
1491  color_16M(ground t, short r, short g, short b) : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
-
1492  color_16M(ground t, const std::string&) : color(ansi::colors_16M, t) {}
-
1493  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
-
1494  std::ostream& print_on( std::ostream&) const {}
+
1428  std::ofstream fd(outfile);
+
1429 
+
1430  if(_format_dump.size() > 0) {
+
1431 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
1432  fd << format(_format_dump, "", basename(getenv("_")),
+
1433  stage, file, func,
+
1434  line, scope.depth );
+
1435 #else
+
1436  fd << format(_format_dump, "",
+
1437  stage, file, func,
+
1438  line );
+
1439 #endif
+
1440  fd << sep; // sep after comment line.
+
1441  }
+
1442 
+
1443  std::copy(container_begin, container_end,
+
1444  std::ostream_iterator<typename In::value_type>(fd, sep.c_str()));
+
1445 
+
1446  fd.close();
+
1447  } // if scopes.matches
+
1448  }
+
1449 
+
1451 };
+
1452 
+
1455 #else // not WITH_CLUTCHLOG
+
1456 
+
1457 
+
1458 /**********************************************************************
+
1459  * Fake implementation
+
1460  **********************************************************************/
+
1461 
+
1462 // Equivalent class with empty methods, will be optimized out
+
1463 // while allowing to actually have calls implemented without WITH_CLUTCHLOG guards.
+
1464 #pragma GCC diagnostic push
+
1465 #pragma GCC diagnostic ignored "-Wreturn-type"
+
1466 class clutchlog
+
1467 {
+
1468  public:
+
1469  static clutchlog& logger() {}
+
1470  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
+
1471  class fmt {
+
1472  public:
+
1473  enum class ansi { colors_16, colors_256, colors_16M} mode;
+
1474  enum class typo { reset, bold, underline, inverse, none} style;
+
1475  enum class fg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none} fore;
+
1476  enum class bg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none } back;
+
1477  protected:
+
1478  friend std::ostream& operator<<(std::ostream&, const std::tuple<fg,bg,typo>&) {}
+
1479  friend std::ostream& operator<<(std::ostream&, const typo&) {}
+
1480  protected:
+
1481  struct color {
+
1482  ansi mode;
+
1483  enum class ground { fore, back } type;
+
1484  color(ansi a, ground g) : mode(a), type(g) {}
+
1485  virtual bool is_set() const = 0;
+
1486  virtual std::ostream& print_on( std::ostream&) const = 0;
+
1487  friend std::ostream& operator<<(std::ostream&, const color&) {}
+
1488  };
+
1489  struct color_256 : public color {
+
1490  short index;
+
1491  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
+
1492  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {}
+
1493  bool is_set() const {}
+
1494  std::ostream& print_on( std::ostream&) const {}
1495  };
-
1496  struct fg_16M : public color_16M {
-
1497  fg_16M() : color_16M(ground::fore) {}
-
1498  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
-
1499  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
-
1500  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
-
1501  } fore_16M;
-
1502  struct bg_16M : public color_16M {
-
1503  bg_16M() : color_16M(ground::back) {}
-
1504  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
-
1505  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
-
1506  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
-
1507  } back_16M;
-
1508  public:
-
1509  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
-
1510  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
1511  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
1512  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
1513  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
1514  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
1515  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
-
1516  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
-
1517  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
-
1518  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
-
1519  fmt(const short fr, const short fg, const short fb,
-
1520  const short gr, const short gg, const short gb,
-
1521  typo s = typo::none)
-
1522  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
-
1523  fmt(fg,
-
1524  const short gr, const short gg, const short gb,
-
1525  typo s = typo::none)
-
1526  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
-
1527  fmt(const short fr, const short fg, const short fb,
-
1528  bg, typo s = typo::none)
-
1529  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
-
1530  fmt(const short fr, const short fg, const short fb,
-
1531  typo s = typo::none)
-
1532  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
-
1533 
-
1534  fmt(const std::string& f, const std::string& b, typo s = typo::none)
-
1535  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
-
1536  fmt(fg, const std::string& b, typo s = typo::none)
-
1537  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
-
1538  fmt(const std::string& f, bg, typo s = typo::none)
-
1539  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
-
1540  fmt(const std::string& f, typo s = typo::none)
-
1541  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
-
1542  protected:
-
1543  std::ostream& print_on( std::ostream&) const {}
-
1544  public:
-
1545  friend std::ostream& operator<<(std::ostream&, const fmt&) {}
-
1546  std::string operator()( const std::string&) const {}
-
1547  std::string str() const {}
-
1548  static fmt hash( const std::string&, const std::vector<fmt>) {}
-
1549  };
-
1550  public:
-
1551  clutchlog(clutchlog const&) = delete;
-
1552  void operator=(clutchlog const&) = delete;
-
1553  private:
-
1554  clutchlog() {}
-
1555  protected:
-
1556  struct scope_t {};
-
1557  scope_t locate(
-
1558  const level&,
-
1559  const std::string&,
-
1560  const std::string&,
-
1561  const size_t
-
1562  ) const
-
1563  {}
-
1564  public:
-
1565  void format(const std::string&) {}
-
1566  std::string format() const {}
-
1567 
-
1568  void format_comment(const std::string&) {}
-
1569  std::string format_comment() const {}
-
1570 
-
1571  void out(std::ostream&) {}
-
1572  std::ostream& out() {}
-
1573 
-
1574 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
-
1575  void depth(size_t) {}
-
1576  size_t depth() const {}
-
1577 
-
1578  void depth_mark(const std::string) {}
-
1579  std::string depth_mark() const {}
-
1580  void strip_calls(const size_t) {}
-
1581  size_t strip_calls() const {}
-
1582 #endif
-
1583 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
-
1584  void hfill_mark(const char) {}
-
1585  char hfill_mark() const {}
-
1586  void hfill_fmt(fmt) {}
-
1587  fmt hfill_fmt() const {}
-
1588  void hfill_min(const size_t) {}
-
1589  size_t hfill_min() {}
-
1590  void hfill_max(const size_t) {}
-
1591  size_t hfill_max() {}
-
1592 #endif
-
1593  void filehash_styles(std::vector<fmt> ) {}
-
1594  void funchash_styles(std::vector<fmt> ) {}
-
1595  void depth_styles(std::vector<fmt>) {}
-
1596 
-
1597  void threshold(level) {}
-
1598  void threshold(const std::string&) {}
-
1599  level threshold() const {}
-
1600  const std::map<std::string,level> levels() const {}
-
1601  level level_of(const std::string) {}
-
1602 
-
1603  void file(std::string) {}
-
1604  void func(std::string) {}
-
1605  void line(std::string) {}
-
1606 
-
1607 #pragma GCC diagnostic push
-
1608 #pragma GCC diagnostic ignored "-Wunused-parameter"
-
1609  void location(
-
1610  const std::string&,
-
1611  const std::string& in_function=".*",
-
1612  const std::string& in_line=".*"
-
1613  )
-
1614  {}
-
1615 #pragma GCC diagnostic pop
-
1616  template<class ... FMT>
-
1617  void style(level, FMT...) {}
-
1618  void style(level, fmt) {}
-
1619  fmt style(level) const {}
-
1620  public:
-
1621  std::string replace(
-
1622  const std::string&,
-
1623  const std::string&,
-
1624  const std::string&
-
1625  ) const
-
1626  {}
-
1627 
-
1628  std::string replace(
-
1629  const std::string&,
-
1630  const std::string&,
-
1631  const size_t
-
1632  ) const
-
1633  {}
-
1634 
-
1635  std::string format(
-
1636  std::string,
-
1637  const std::string&,
- -
1639  const std::string&,
-
1640 #endif
-
1641  const level&,
-
1642  const std::string&,
-
1643  const std::string&,
-
1644  const size_t
- -
1646  ,
-
1647  const size_t
-
1648 #endif
-
1649  ) const
-
1650  {}
-
1651 
-
1652  void log(
-
1653  const level&,
-
1654  const std::string&,
-
1655  const std::string&, const std::string&, size_t
-
1656  ) const
-
1657  {}
-
1658 
-
1659  template<class In>
-
1660  void dump(
-
1661  const level&,
-
1662  const In, const In,
-
1663  const std::string&, const std::string&, size_t,
-
1664  const std::string&,
-
1665  const std::string
-
1666  ) const
-
1667  {}
-
1668 };
-
1669 #pragma GCC diagnostic pop
-
1670 #endif // WITH_CLUTCHLOG
-
1671 
-
1672 #endif // CLUTCHLOG_H
+
1496  struct fg_256 : public color_256 {
+
1497  fg_256() : color_256(ground::fore) {}
+
1498  fg_256(const short f) : color_256(ground::fore, f) {}
+
1499  fg_256(const fg&) : color_256(ground::fore, -1) {}
+
1500  } fore_256;
+
1501  struct bg_256 : public color_256 {
+
1502  bg_256() : color_256(ground::back) {}
+
1503  bg_256(const short b) : color_256(ground::back, b) {}
+
1504  bg_256(const bg&) : color_256(ground::back, -1) {}
+
1505  } back_256;
+
1506  struct color_16M : public color {
+
1507  short red, green, blue;
+
1508  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
+
1509  color_16M(ground t, short r, short g, short b) : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
+
1510  color_16M(ground t, const std::string&) : color(ansi::colors_16M, t) {}
+
1511  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
+
1512  std::ostream& print_on( std::ostream&) const {}
+
1513  };
+
1514  struct fg_16M : public color_16M {
+
1515  fg_16M() : color_16M(ground::fore) {}
+
1516  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
+
1517  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
+
1518  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
+
1519  } fore_16M;
+
1520  struct bg_16M : public color_16M {
+
1521  bg_16M() : color_16M(ground::back) {}
+
1522  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
+
1523  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
+
1524  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
+
1525  } back_16M;
+
1526  public:
+
1527  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
+
1528  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
1529  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
1530  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
1531  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
1532  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
1533  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
+
1534  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
+
1535  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
+
1536  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
+
1537  fmt(const short fr, const short fg, const short fb,
+
1538  const short gr, const short gg, const short gb,
+
1539  typo s = typo::none)
+
1540  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
+
1541  fmt(fg,
+
1542  const short gr, const short gg, const short gb,
+
1543  typo s = typo::none)
+
1544  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
+
1545  fmt(const short fr, const short fg, const short fb,
+
1546  bg, typo s = typo::none)
+
1547  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
+
1548  fmt(const short fr, const short fg, const short fb,
+
1549  typo s = typo::none)
+
1550  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
+
1551 
+
1552  fmt(const std::string& f, const std::string& b, typo s = typo::none)
+
1553  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
+
1554  fmt(fg, const std::string& b, typo s = typo::none)
+
1555  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
+
1556  fmt(const std::string& f, bg, typo s = typo::none)
+
1557  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
+
1558  fmt(const std::string& f, typo s = typo::none)
+
1559  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
+
1560  protected:
+
1561  std::ostream& print_on( std::ostream&) const {}
+
1562  public:
+
1563  friend std::ostream& operator<<(std::ostream&, const fmt&) {}
+
1564  std::string operator()( const std::string&) const {}
+
1565  std::string str() const {}
+
1566  static fmt hash( const std::string&, const std::vector<fmt>) {}
+
1567  };
+
1568  public:
+
1569  clutchlog(clutchlog const&) = delete;
+
1570  void operator=(clutchlog const&) = delete;
+
1571  private:
+
1572  clutchlog() {}
+
1573  protected:
+
1574  struct scope_t {};
+
1575  scope_t locate(
+
1576  const level&,
+
1577  const std::string&,
+
1578  const std::string&,
+
1579  const size_t
+
1580  ) const
+
1581  {}
+
1582  public:
+
1583  void format(const std::string&) {}
+
1584  std::string format() const {}
+
1585 
+
1586  void format_comment(const std::string&) {}
+
1587  std::string format_comment() const {}
+
1588 
+
1589  void out(std::ostream&) {}
+
1590  std::ostream& out() {}
+
1591 
+
1592 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
+
1593  void depth(size_t) {}
+
1594  size_t depth() const {}
+
1595 
+
1596  void depth_mark(const std::string) {}
+
1597  std::string depth_mark() const {}
+
1598  void strip_calls(const size_t) {}
+
1599  size_t strip_calls() const {}
+
1600 #endif
+
1601 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
+
1602  void hfill_mark(const char) {}
+
1603  char hfill_mark() const {}
+
1604  void hfill_fmt(fmt) {}
+
1605  fmt hfill_fmt() const {}
+
1606  void hfill_min(const size_t) {}
+
1607  size_t hfill_min() {}
+
1608  void hfill_max(const size_t) {}
+
1609  size_t hfill_max() {}
+
1610 #endif
+
1611  void filehash_styles(std::vector<fmt> ) {}
+
1612  void funchash_styles(std::vector<fmt> ) {}
+
1613  void depth_styles(std::vector<fmt>) {}
+
1614 
+
1615  void threshold(level) {}
+
1616  void threshold(const std::string&) {}
+
1617  level threshold() const {}
+
1618  const std::map<std::string,level> levels() const {}
+
1619  level level_of(const std::string) {}
+
1620 
+
1621  void file(std::string) {}
+
1622  void func(std::string) {}
+
1623  void line(std::string) {}
+
1624 
+
1625 #pragma GCC diagnostic push
+
1626 #pragma GCC diagnostic ignored "-Wunused-parameter"
+
1627  void location(
+
1628  const std::string&,
+
1629  const std::string& in_function=".*",
+
1630  const std::string& in_line=".*"
+
1631  )
+
1632  {}
+
1633 #pragma GCC diagnostic pop
+
1634  template<class ... FMT>
+
1635  void style(level, FMT...) {}
+
1636  void style(level, fmt) {}
+
1637  fmt style(level) const {}
+
1638  public:
+
1639  std::string replace(
+
1640  const std::string&,
+
1641  const std::string&,
+
1642  const std::string&
+
1643  ) const
+
1644  {}
+
1645 
+
1646  std::string replace(
+
1647  const std::string&,
+
1648  const std::string&,
+
1649  const size_t
+
1650  ) const
+
1651  {}
+
1652 
+
1653  std::string format(
+
1654  std::string,
+
1655  const std::string&,
+ +
1657  const std::string&,
+
1658 #endif
+
1659  const level&,
+
1660  const std::string&,
+
1661  const std::string&,
+
1662  const size_t
+ +
1664  ,
+
1665  const size_t
+
1666 #endif
+
1667  ) const
+
1668  {}
+
1669 
+
1670  void log(
+
1671  const level&,
+
1672  const std::string&,
+
1673  const std::string&, const std::string&, size_t
+
1674  ) const
+
1675  {}
+
1676 
+
1677  template<class In>
+
1678  void dump(
+
1679  const level&,
+
1680  const In, const In,
+
1681  const std::string&, const std::string&, size_t,
+
1682  const std::string&,
+
1683  const std::string
+
1684  ) const
+
1685  {}
+
1686 };
+
1687 #pragma GCC diagnostic pop
+
1688 #endif // WITH_CLUTCHLOG
+
1689 
+
1690 #endif // CLUTCHLOG_H
-
friend std::ostream & operator<<(std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
Output stream operator for a 3-tuple of 16-colors mode tags.
Definition: clutchlog.h:433
-
static std::string default_depth_mark
Default mark for stack depth.
Definition: clutchlog.h:249
-
std::string _format_log
Current format of the standard output.
Definition: clutchlog.h:913
-
color_16M(ground t, const std::string &srgb)
Hex triplet string constructor.
Definition: clutchlog.h:601
-
void depth_styles(std::vector< fmt > styles)
Set the styles for value-dependant depth formatting.
Definition: clutchlog.h:1045
-
std::map< level, fmt > _level_fmt
Dictionary of level identifier to their format.
Definition: clutchlog.h:911
-
void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, size_t line) const
Print a log message IF the location matches the given one.
Definition: clutchlog.h:1356
+
friend std::ostream & operator<<(std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
Output stream operator for a 3-tuple of 16-colors mode tags.
Definition: clutchlog.h:443
+
static std::string default_depth_mark
Default mark for stack depth.
Definition: clutchlog.h:259
+
std::string _format_log
Current format of the standard output.
Definition: clutchlog.h:923
+
color_16M(ground t, const std::string &srgb)
Hex triplet string constructor.
Definition: clutchlog.h:611
+
void dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
Dump a serializable container after a comment line with log information.
Definition: clutchlog.h:1399
+
void depth_styles(std::vector< fmt > styles)
Set the styles for value-dependant depth formatting.
Definition: clutchlog.h:1055
+
std::map< level, fmt > _level_fmt
Dictionary of level identifier to their format.
Definition: clutchlog.h:921
enum clutchlog::fmt::bg back
Background color.
-
std::vector< fmt > _funchash_fmts
List of candidate format objects for value-dependant function name styling.
Definition: clutchlog.h:946
-
std::string str() const
Return the formatting code as a string.
Definition: clutchlog.h:807
-
Foreground in 256-colors mode.
Definition: clutchlog.h:539
-
void line(std::string line)
Set the regular expression filtering the line location.
Definition: clutchlog.h:1075
-
friend std::ostream & operator<<(std::ostream &os, const color &c)
Print the actually encoded escaped color sequence on the given stream.
Definition: clutchlog.h:493
-
friend std::ostream & operator<<(std::ostream &os, const typo &s)
Output stream operator for a typo tag alone, in 16-colors mode.
Definition: clutchlog.h:455
-
static std::string dump_default_format
Default format of the comment line in file dump.
Definition: clutchlog.h:235
-
void out(std::ostream &out)
Set the output stream on which to print.
Definition: clutchlog.h:977
-
bool is_set() const
Returns true if the underying representation encodes an existing color.
Definition: clutchlog.h:623
-
fg_16M(const fg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:659
-
static std::string dump_default_sep
Default item separator for dump.
Definition: clutchlog.h:242
-
std::string format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
Substitute all tags in the format string with the corresponding information and apply the style corre...
Definition: clutchlog.h:1259
-
Background in 256-colors mode.
Definition: clutchlog.h:556
-
#define CLUTCHLOG_DEFAULT_DEPTH_MARK
Compile-time default mark for stack depth.
Definition: clutchlog.h:246
-
static unsigned int default_strip_calls
Number of call stack levels to remove from depth display by default.
Definition: clutchlog.h:256
-
static size_t default_hfill_min
Default minimum width (number of characters) at which to fill for right-aligning the right part of me...
Definition: clutchlog.h:277
-
std::string replace(const std::string &form, const std::string &mark, const std::string &tag) const
Replace mark by tag in form.
Definition: clutchlog.h:1183
-
color_256(ground t)
Constructor.
Definition: clutchlog.h:518
+
std::vector< fmt > _funchash_fmts
List of candidate format objects for value-dependant function name styling.
Definition: clutchlog.h:956
+
std::string str() const
Return the formatting code as a string.
Definition: clutchlog.h:817
+
Foreground in 256-colors mode.
Definition: clutchlog.h:549
+
void line(std::string line)
Set the regular expression filtering the line location.
Definition: clutchlog.h:1085
+
friend std::ostream & operator<<(std::ostream &os, const color &c)
Print the actually encoded escaped color sequence on the given stream.
Definition: clutchlog.h:503
+
friend std::ostream & operator<<(std::ostream &os, const typo &s)
Output stream operator for a typo tag alone, in 16-colors mode.
Definition: clutchlog.h:465
+
static std::string dump_default_format
Default format of the comment line in file dump.
Definition: clutchlog.h:245
+
void out(std::ostream &out)
Set the output stream on which to print.
Definition: clutchlog.h:987
+
bool is_set() const
Returns true if the underying representation encodes an existing color.
Definition: clutchlog.h:633
+
fg_16M(const fg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:669
+
static std::string dump_default_sep
Default item separator for dump.
Definition: clutchlog.h:252
+
std::string format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
Substitute all tags in the format string with the corresponding information and apply the style corre...
Definition: clutchlog.h:1269
+
Background in 256-colors mode.
Definition: clutchlog.h:566
+
#define CLUTCHLOG_DEFAULT_DEPTH_MARK
Compile-time default mark for stack depth.
Definition: clutchlog.h:256
+
static unsigned int default_strip_calls
Number of call stack levels to remove from depth display by default.
Definition: clutchlog.h:266
+
static size_t default_hfill_min
Default minimum width (number of characters) at which to fill for right-aligning the right part of me...
Definition: clutchlog.h:287
+
std::string replace(const std::string &form, const std::string &mark, const std::string &tag) const
Replace mark by tag in form.
Definition: clutchlog.h:1193
+
color_256(ground t)
Constructor.
Definition: clutchlog.h:528
clutchlog::fmt::bg_16M back_16M
Current background in 16M-colors mode.
-
Interface class for colors representation.
Definition: clutchlog.h:470
+
Interface class for colors representation.
Definition: clutchlog.h:480
@ colors_16
16 colors mode.
-
background in 256-colors mode.
Definition: clutchlog.h:664
-
static char default_hfill_char
Default character used as a filling for right-align the right part of messages with "{hfill}".
Definition: clutchlog.h:263
-
bool matches
Everything is compatible.
Definition: clutchlog.h:1110
+
background in 256-colors mode.
Definition: clutchlog.h:674
+
static char default_hfill_char
Default character used as a filling for right-align the right part of messages with "{hfill}".
Definition: clutchlog.h:273
+
bool matches
Everything is compatible.
Definition: clutchlog.h:1120
enum clutchlog::fmt::typo style
Typographic style.
-
Abstract base class for 16M colors objects (24-bits ANSI).
Definition: clutchlog.h:573
-
fg_256(const fg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:551
-
void format_comment(const std::string &format)
Set the template string for dumps.
Definition: clutchlog.h:972
-
bg_16M(const std::string &srgb)
Hex triplet string constructor.
Definition: clutchlog.h:684
-
void file(std::string file)
Set the regular expression filtering the file location.
Definition: clutchlog.h:1071
-
scope_t locate(const level &stage, const std::string &file, const std::string &func, const size_t line) const
Gather information on the current location of the call.
Definition: clutchlog.h:1132
+
Abstract base class for 16M colors objects (24-bits ANSI).
Definition: clutchlog.h:583
+
fg_256(const fg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:561
+
void format_comment(const std::string &format)
Set the template string for dumps.
Definition: clutchlog.h:982
+
bg_16M(const std::string &srgb)
Hex triplet string constructor.
Definition: clutchlog.h:694
+
void file(std::string file)
Set the regular expression filtering the file location.
Definition: clutchlog.h:1081
+
scope_t locate(const level &stage, const std::string &file, const std::string &func, const size_t line) const
Gather information on the current location of the call.
Definition: clutchlog.h:1142
clutchlog::fmt::fg_16M fore_16M
Current foreground in 16M-colors mode.
-
Abstract base class for 256 colors objects (8-bits ANSI).
Definition: clutchlog.h:509
-
fmt()
Empty constructor, only useful for a no-op formatter.
Definition: clutchlog.h:697
-
void style(level stage, fmt style)
Set the style (color and typo) of the given log level, passing a fmt instance.
Definition: clutchlog.h:1096
-
void threshold(level l)
Set the log level (below which logs are not printed) with an identifier.
Definition: clutchlog.h:1048
-
level threshold() const
Get the log level below which logs are not printed.
Definition: clutchlog.h:1052
+
Abstract base class for 256 colors objects (8-bits ANSI).
Definition: clutchlog.h:519
+
fmt()
Empty constructor, only useful for a no-op formatter.
Definition: clutchlog.h:707
+
void style(level stage, fmt style)
Set the style (color and typo) of the given log level, passing a fmt instance.
Definition: clutchlog.h:1106
+
void threshold(level l)
Set the log level (below which logs are not printed) with an identifier.
Definition: clutchlog.h:1058
+
level threshold() const
Get the log level below which logs are not printed.
Definition: clutchlog.h:1062
virtual bool is_set() const =0
Should return true if the underying representation encodes an existing color.
-
std::map< level, std::string > _level_short
dictionary of level identifier to their 4-letters representation.
Definition: clutchlog.h:909
-
level
Available log levels.
Definition: clutchlog.h:303
-
color_256(ground t, const short i)
Constructor.
Definition: clutchlog.h:525
-
std::ostream & print_on(std::ostream &os) const
Print the color index on the given stream.
Definition: clutchlog.h:531
-
color_16M(ground t)
Constructor.
Definition: clutchlog.h:582
-
static size_t default_hfill_max
Default maximum width (number of characters) for which to fill for right-aligning the right part of m...
Definition: clutchlog.h:275
-
void funchash_styles(std::vector< fmt > styles)
Set the candidate styles for value-dependant function name formatting.
Definition: clutchlog.h:1036
-
scope_t()
Constructor.
Definition: clutchlog.h:1120
-
std::regex _in_func
Current function location filter.
Definition: clutchlog.h:939
-
static std::string default_format
Default format of the messages.
Definition: clutchlog.h:213
-
bg_16M(short r, short g, short b)
Numeric triplet constructor.
Definition: clutchlog.h:676
-
static clutchlog & logger()
Get the logger instance.
Definition: clutchlog.h:296
-
Foreground in 256-colors mode.
Definition: clutchlog.h:634
-
void dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
Dump a serializable container after a comment line with log information.
Definition: clutchlog.h:1381
+
std::map< level, std::string > _level_short
dictionary of level identifier to their 4-letters representation.
Definition: clutchlog.h:919
+
level
Available log levels.
Definition: clutchlog.h:313
+
color_256(ground t, const short i)
Constructor.
Definition: clutchlog.h:535
+
std::ostream & print_on(std::ostream &os) const
Print the color index on the given stream.
Definition: clutchlog.h:541
+
color_16M(ground t)
Constructor.
Definition: clutchlog.h:592
+
static size_t default_hfill_max
Default maximum width (number of characters) for which to fill for right-aligning the right part of m...
Definition: clutchlog.h:285
+
void funchash_styles(std::vector< fmt > styles)
Set the candidate styles for value-dependant function name formatting.
Definition: clutchlog.h:1046
+
scope_t()
Constructor.
Definition: clutchlog.h:1130
+
std::regex _in_func
Current function location filter.
Definition: clutchlog.h:949
+
static std::string default_format
Default format of the messages.
Definition: clutchlog.h:223
+
bg_16M(short r, short g, short b)
Numeric triplet constructor.
Definition: clutchlog.h:686
+
static clutchlog & logger()
Get the logger instance.
Definition: clutchlog.h:306
+
Foreground in 256-colors mode.
Definition: clutchlog.h:644
clutchlog::fmt::fg_256 fore_256
Current foreground in 256-colors mode.
enum clutchlog::fmt::fg fore
Foreground color.
-
void filehash_styles(std::vector< fmt > styles)
Set the candidate styles for value-dependant file name formatting.
Definition: clutchlog.h:1028
+
void filehash_styles(std::vector< fmt > styles)
Set the candidate styles for value-dependant file name formatting.
Definition: clutchlog.h:1038
enum clutchlog::fmt::color::ground type
Type of color (foreground or background).
-
Color and style formatter for ANSI terminal escape sequences.
Definition: clutchlog.h:366
-
short index
The encoded color index in 4-bits ANSI.
Definition: clutchlog.h:513
-
bg_256()
Empty constructor: no color.
Definition: clutchlog.h:558
-
void func(std::string func)
Set the regular expression filtering the function location.
Definition: clutchlog.h:1073
-
std::string format() const
Get the template string.
Definition: clutchlog.h:969
-
std::regex _in_file
Current file location filter.
Definition: clutchlog.h:937
-
void style(level stage, FMT... styles)
Set the style (color and typo) of the given log level.
Definition: clutchlog.h:1094
-
bg_256(const bg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:568
-
fg_16M()
Empty constructor: no color.
Definition: clutchlog.h:636
-
level level_of(const std::string name)
Return the log level tag corresponding to the given pre-configured name.
Definition: clutchlog.h:1060
-
const std::map< level, std::string > _level_word
Dictionary of level identifier to their string representation.
Definition: clutchlog.h:905
-
std::string operator()(const std::string &msg) const
Format the given string with the currently encoded format.
Definition: clutchlog.h:795
-
color_16M(ground t, short r, short g, short b)
Numeric triplet constructor.
Definition: clutchlog.h:591
-
std::ostream & print_on(std::ostream &os) const
Print the color RGB triplet on the given stream.
Definition: clutchlog.h:626
-
bg
Background color codes.
Definition: clutchlog.h:411
-
#define CLUTCHLOG_DEFAULT_FORMAT
Compile-time default format of the messages (debug mode: with absolute location).
Definition: clutchlog.h:198
-
std::regex _in_line
Current line location filter.
Definition: clutchlog.h:941
-
fg_256(const short f)
Constructor.
Definition: clutchlog.h:546
+
Color and style formatter for ANSI terminal escape sequences.
Definition: clutchlog.h:376
+
short index
The encoded color index in 4-bits ANSI.
Definition: clutchlog.h:523
+
bg_256()
Empty constructor: no color.
Definition: clutchlog.h:568
+
void func(std::string func)
Set the regular expression filtering the function location.
Definition: clutchlog.h:1083
+
std::string format() const
Get the template string.
Definition: clutchlog.h:979
+
std::regex _in_file
Current file location filter.
Definition: clutchlog.h:947
+
void style(level stage, FMT... styles)
Set the style (color and typo) of the given log level.
Definition: clutchlog.h:1104
+
bg_256(const bg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:578
+
fg_16M()
Empty constructor: no color.
Definition: clutchlog.h:646
+
level level_of(const std::string name)
Return the log level tag corresponding to the given pre-configured name.
Definition: clutchlog.h:1070
+
const std::map< level, std::string > _level_word
Dictionary of level identifier to their string representation.
Definition: clutchlog.h:915
+
std::string operator()(const std::string &msg) const
Format the given string with the currently encoded format.
Definition: clutchlog.h:805
+
color_16M(ground t, short r, short g, short b)
Numeric triplet constructor.
Definition: clutchlog.h:601
+
std::ostream & print_on(std::ostream &os) const
Print the color RGB triplet on the given stream.
Definition: clutchlog.h:636
+
bg
Background color codes.
Definition: clutchlog.h:421
+
#define CLUTCHLOG_DEFAULT_FORMAT
Compile-time default format of the messages (debug mode: with absolute location).
Definition: clutchlog.h:208
+
std::regex _in_line
Current line location filter.
Definition: clutchlog.h:951
+
fg_256(const short f)
Constructor.
Definition: clutchlog.h:556
@ colors_256
256 colors mode.
enum clutchlog::fmt::ansi mode
Current ANSI color mode.
-
std::string replace(const std::string &form, const std::string &mark, const size_t tag) const
Replace mark by tag in form, converting tag to its string representation first.
Definition: clutchlog.h:1248
-
std::string format_comment() const
Get the template string for dumps.
Definition: clutchlog.h:974
-
fg_256()
Empty constructor: no color.
Definition: clutchlog.h:541
+
std::string replace(const std::string &form, const std::string &mark, const size_t tag) const
Replace mark by tag in form, converting tag to its string representation first.
Definition: clutchlog.h:1258
+
std::string format_comment() const
Get the template string for dumps.
Definition: clutchlog.h:984
+
fg_256()
Empty constructor: no color.
Definition: clutchlog.h:551
@ colors_16M
16 millions ("true") colors mode.
-
std::string _format_dump
Current format of the file output.
Definition: clutchlog.h:915
-
#define CLUTCHDUMP_DEFAULT_SEP
Compile-time default item separator for dump.
Definition: clutchlog.h:239
-
bg_256(const short b)
Constructor.
Definition: clutchlog.h:563
-
ground
Codes for representing foreground or background.
Definition: clutchlog.h:474
-
Structure holding a location matching.
Definition: clutchlog.h:1108
-
#define CLUTCHLOG_DEFAULT_HFILL_MARK
Character used as a filling for right-align the right part of messages with "{hfill}".
Definition: clutchlog.h:260
-
std::ostream & print_on(std::ostream &os) const
Print the currently encoded format escape code on the given output stream.
Definition: clutchlog.h:746
-
bool is_set() const
Returns true if the underying representation encodes an existing color.
Definition: clutchlog.h:528
-
std::ostream * _out
Standard output.
Definition: clutchlog.h:927
-
std::ostream & out()
Get the output stream on which to print.
Definition: clutchlog.h:979
-
void threshold(const std::string &l)
Set the log level (below which logs are not printed) with a string.
Definition: clutchlog.h:1050
+
std::string _format_dump
Current format of the file output.
Definition: clutchlog.h:925
+
#define CLUTCHDUMP_DEFAULT_SEP
Compile-time default item separator for dump.
Definition: clutchlog.h:249
+
bg_256(const short b)
Constructor.
Definition: clutchlog.h:573
+
ground
Codes for representing foreground or background.
Definition: clutchlog.h:484
+
Structure holding a location matching.
Definition: clutchlog.h:1118
+
#define CLUTCHLOG_DEFAULT_HFILL_MARK
Character used as a filling for right-align the right part of messages with "{hfill}".
Definition: clutchlog.h:270
+
std::ostream & print_on(std::ostream &os) const
Print the currently encoded format escape code on the given output stream.
Definition: clutchlog.h:756
+
bool is_set() const
Returns true if the underying representation encodes an existing color.
Definition: clutchlog.h:538
+
std::ostream * _out
Standard output.
Definition: clutchlog.h:937
+
std::ostream & out()
Get the output stream on which to print.
Definition: clutchlog.h:989
+
void threshold(const std::string &l)
Set the log level (below which logs are not printed) with a string.
Definition: clutchlog.h:1060
virtual std::ostream & print_on(std::ostream &os) const =0
Should print the underlying representation on the given stream.
-
const std::map< std::string, level > & levels() const
Get the map of available log levels string representations toward their identifier....
Definition: clutchlog.h:1054
-
size_t _strip_calls
Current number of call stack levels to remove from depth display.
Definition: clutchlog.h:903
-
level stage
Current log level.
Definition: clutchlog.h:1112
-
bool there
Location is compatible.
Definition: clutchlog.h:1118
-
fg_16M(const std::string &srgb)
Hex triplet string constructor.
Definition: clutchlog.h:654
-
#define CLUTCHLOG_STRIP_CALLS
Compile-time number of call stack levels to remove from depth display by default.
Definition: clutchlog.h:253
-
friend std::ostream & operator<<(std::ostream &os, const fmt &fmt)
Output stream overload.
Definition: clutchlog.h:780
-
bg_16M(const bg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:689
-
bg_16M()
Empty constructor: no color.
Definition: clutchlog.h:666
-
std::map< std::string, level > _word_level
Dictionary of level string to their identifier.
Definition: clutchlog.h:907
-
level _stage
Current log level.
Definition: clutchlog.h:935
-
fmt style(level stage) const
Get the configured fmt instance of the given log level.
Definition: clutchlog.h:1098
-
typo
Typographic style codes.
Definition: clutchlog.h:379
-
void location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
Set the regular expressions filtering the location.
Definition: clutchlog.h:1078
+
const std::map< std::string, level > & levels() const
Get the map of available log levels string representations toward their identifier....
Definition: clutchlog.h:1064
+
size_t _strip_calls
Current number of call stack levels to remove from depth display.
Definition: clutchlog.h:913
+
level stage
Current log level.
Definition: clutchlog.h:1122
+
bool there
Location is compatible.
Definition: clutchlog.h:1128
+
fg_16M(const std::string &srgb)
Hex triplet string constructor.
Definition: clutchlog.h:664
+
#define CLUTCHLOG_STRIP_CALLS
Compile-time number of call stack levels to remove from depth display by default.
Definition: clutchlog.h:263
+
friend std::ostream & operator<<(std::ostream &os, const fmt &fmt)
Output stream overload.
Definition: clutchlog.h:790
+
void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
Print a log message IF the location matches the given one.
Definition: clutchlog.h:1374
+
bg_16M(const bg &)
Conversion constructor from 16-colors mode.
Definition: clutchlog.h:699
+
bg_16M()
Empty constructor: no color.
Definition: clutchlog.h:676
+
std::map< std::string, level > _word_level
Dictionary of level string to their identifier.
Definition: clutchlog.h:917
+
level _stage
Current log level.
Definition: clutchlog.h:945
+
fmt style(level stage) const
Get the configured fmt instance of the given log level.
Definition: clutchlog.h:1108
+
typo
Typographic style codes.
Definition: clutchlog.h:389
+
void location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
Set the regular expressions filtering the location.
Definition: clutchlog.h:1088
#define CLUTCHLOG_HAVE_UNIX_SYSINFO
True if POSIX headers necessary for stack depth management are available.
Definition: clutchlog.h:33
-
std::vector< fmt > _filehash_fmts
List of candidate format objects for value-dependant file name styling.
Definition: clutchlog.h:944
-
The single class which holds everything.
Definition: clutchlog.h:177
-
ansi
ANSI code configuring the available number of colors.
Definition: clutchlog.h:369
-
fg_16M(short r, short g, short b)
Numeric triplet constructor.
Definition: clutchlog.h:646
-
fg
Foreground color codes.
Definition: clutchlog.h:390
-
short red
The encoded RGB indices.
Definition: clutchlog.h:577
-
#define CLUTCHDUMP_DEFAULT_FORMAT
Compile-time default format of the comment line in file dump.
Definition: clutchlog.h:221
-
color(ansi a, ground g)
Constructor.
Definition: clutchlog.h:484
+
std::vector< fmt > _filehash_fmts
List of candidate format objects for value-dependant file name styling.
Definition: clutchlog.h:954
+
The single class which holds everything.
Definition: clutchlog.h:187
+
ansi
ANSI code configuring the available number of colors.
Definition: clutchlog.h:379
+
fg_16M(short r, short g, short b)
Numeric triplet constructor.
Definition: clutchlog.h:656
+
fg
Foreground color codes.
Definition: clutchlog.h:400
+
short red
The encoded RGB indices.
Definition: clutchlog.h:587
+
#define CLUTCHDUMP_DEFAULT_FORMAT
Compile-time default format of the comment line in file dump.
Definition: clutchlog.h:231
+
color(ansi a, ground g)
Constructor.
Definition: clutchlog.h:494
clutchlog::fmt::bg_256 back_256
Current background in 256-colors mode.
@@ -84,7 +84,7 @@ $(document).ready(function(){initNavTree('dir_59425e443f801f1f2fd8bbe4959a3ccf.h
-

tests → clutchlog Relation

Public Member Functions

std::cout << error("ERROR") << std::endl;
Note
A formatter called this way WILL output a reset escape code at the end.
-

Definition at line 795 of file clutchlog.h.

+

Definition at line 805 of file clutchlog.h.

-

References print_on().

+

References print_on().

@@ -462,7 +462,7 @@ std::ostream & 
std::cout << error << "ERROR" << end << std::endl;
Note
An formatter called this way will NOT output a reset escape code.
-

Definition at line 780 of file clutchlog.h.

+

Definition at line 790 of file clutchlog.h.

@@ -497,7 +497,7 @@ std::ostream & 
Definition at line 369 of file clutchlog.h.

+

Definition at line 379 of file clutchlog.h.

@@ -506,7 +506,7 @@ std::ostream & 
Color and style formatter for ANSI terminal escape sequences.
Definition: clutchlog.h:366
+
Color and style formatter for ANSI terminal escape sequences.
Definition: clutchlog.h:376
clutchlog -  0.14 +  0.15
clutchlog -  0.14 +  0.15
CLUTCHLOC   __FILE__, __FUNCTION__, __LINE__
 Handy shortcuts to location.
 
#define CLUTCHLOG(LEVEL, WHAT)
 Log a message at the given level. More...
#define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
 Log a message at the given level and with a given depth delta. More...
 
+#define CLUTCHLOG(LEVEL, WHAT)   CLUTCHLOGD(LEVEL, WHAT, 0)
 Log a message at the given level.
 
#define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
 Dump the given container. More...
clutchlog -  0.14 +  0.15
clutchlog -  0.14 +  0.15
File in testsIncludes file in clutchlog
t-assert.cppclutchlog.h
t-color.cppclutchlog.h
t-color16M.cppclutchlog.h
t-color256.cppclutchlog.h
t-demo-extravagant.cppclutchlog.h
t-demo.cppclutchlog.h
t-dump.cppclutchlog.h
t-fmt-constructors.cppclutchlog.h
t-hash-color.cppclutchlog.h
t-log.cppclutchlog.h
t-one-line-if.cppclutchlog.h
+

tests → clutchlog Relation

File in testsIncludes file in clutchlog
t-assert.cppclutchlog.h
t-color.cppclutchlog.h
t-color16M.cppclutchlog.h
t-color256.cppclutchlog.h
t-demo-extravagant.cppclutchlog.h
t-demo.cppclutchlog.h
t-depth-delta.cppclutchlog.h
t-dump.cppclutchlog.h
t-fmt-constructors.cppclutchlog.h
t-hash-color.cppclutchlog.h
t-log.cppclutchlog.h
t-one-line-if.cppclutchlog.h
diff --git a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.map b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.map index 903a130..bb0a10c 100644 --- a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.map +++ b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.map @@ -1,5 +1,5 @@ - + diff --git a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 index 2919850..0ad8513 100644 --- a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 +++ b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 @@ -1 +1 @@ -16d7faff1b9c3198b20cf3ae5437a2db \ No newline at end of file +531b57d09121179fe636e2cda048c80c \ No newline at end of file diff --git a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg index 211c012..57a16f0 100644 --- a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg +++ b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg @@ -32,8 +32,8 @@ dir_59425e443f801f1f2fd8bbe4959a3ccf->dir_c318bd5cf14aaa5601e6029e0b5b4048 - -11 + +12 diff --git a/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html b/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html index 8a19fbd..abfa9b5 100644 --- a/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html +++ b/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html @@ -28,7 +28,7 @@ Logo
clutchlog -  0.14 +  0.15
diff --git a/docs/files.html b/docs/files.html index 7ec8eeb..f535eb4 100644 --- a/docs/files.html +++ b/docs/files.html @@ -28,7 +28,7 @@ Logo
clutchlog -  0.14 +  0.15
@@ -97,11 +97,12 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });  t-color256.cpp  t-demo-extravagant.cpp  t-demo.cpp - t-dump.cpp - t-fmt-constructors.cpp - t-hash-color.cpp - t-log.cpp - t-one-line-if.cpp + t-depth-delta.cpp + t-dump.cpp + t-fmt-constructors.cpp + t-hash-color.cpp + t-log.cpp + t-one-line-if.cpp diff --git a/docs/files_dup.js b/docs/files_dup.js index bda5401..de394c4 100644 --- a/docs/files_dup.js +++ b/docs/files_dup.js @@ -7,6 +7,7 @@ var files_dup = [ "t-color256.cpp", "t-color256_8cpp_source.html", null ], [ "t-demo-extravagant.cpp", "t-demo-extravagant_8cpp_source.html", null ], [ "t-demo.cpp", "t-demo_8cpp_source.html", null ], + [ "t-depth-delta.cpp", "t-depth-delta_8cpp_source.html", null ], [ "t-dump.cpp", "t-dump_8cpp_source.html", null ], [ "t-fmt-constructors.cpp", "t-fmt-constructors_8cpp_source.html", null ], [ "t-hash-color.cpp", "t-hash-color_8cpp_source.html", null ], diff --git a/docs/functions.html b/docs/functions.html index b3457b8..7ae6bc1 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -28,7 +28,7 @@ Logo
clutchlog -  0.14 +  0.15
@@ -197,7 +197,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable(); : clutchlog
  • dump() -: clutchlog +: clutchlog
  • dump_default_format : clutchlog @@ -290,7 +290,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable(); : clutchlog
  • log() -: clutchlog +: clutchlog
  • logger() : clutchlog diff --git a/docs/functions_enum.html b/docs/functions_enum.html index c268733..3dccd46 100644 --- a/docs/functions_enum.html +++ b/docs/functions_enum.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    diff --git a/docs/functions_func.html b/docs/functions_func.html index 955935c..eab349f 100644 --- a/docs/functions_func.html +++ b/docs/functions_func.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    @@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl : clutchlog
  • dump() -: clutchlog +: clutchlog
  • @@ -176,7 +176,7 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl : clutchlog
  • log() -: clutchlog +: clutchlog
  • logger() : clutchlog diff --git a/docs/functions_rela.html b/docs/functions_rela.html index 42d1030..c2eefc2 100644 --- a/docs/functions_rela.html +++ b/docs/functions_rela.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    diff --git a/docs/functions_vars.html b/docs/functions_vars.html index c5212bc..d4a0507 100644 --- a/docs/functions_vars.html +++ b/docs/functions_vars.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    diff --git a/docs/globals.html b/docs/globals.html index 30cf2a9..918f052 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    @@ -130,6 +130,9 @@ $(document).ready(function(){initNavTree('globals.html',''); initResizable(); })
  • CLUTCHLOG_STRIP_CALLS : clutchlog.h
  • +
  • CLUTCHLOGD +: clutchlog.h +
  • WITH_CLUTCHLOG : clutchlog.h
  • diff --git a/docs/globals_defs.html b/docs/globals_defs.html index 222ec62..a0cb07e 100644 --- a/docs/globals_defs.html +++ b/docs/globals_defs.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    @@ -130,6 +130,9 @@ $(document).ready(function(){initNavTree('globals_defs.html',''); initResizable(
  • CLUTCHLOG_STRIP_CALLS : clutchlog.h
  • +
  • CLUTCHLOGD +: clutchlog.h +
  • WITH_CLUTCHLOG : clutchlog.h
  • diff --git a/docs/graph_legend.html b/docs/graph_legend.html index 8e89892..edb553d 100644 --- a/docs/graph_legend.html +++ b/docs/graph_legend.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    diff --git a/docs/group___default_config.html b/docs/group___default_config.html index 3453ca4..fe42a2a 100644 --- a/docs/group___default_config.html +++ b/docs/group___default_config.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    diff --git a/docs/group___formating.html b/docs/group___formating.html index f29caec..5bbe894 100644 --- a/docs/group___formating.html +++ b/docs/group___formating.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    diff --git a/docs/group___main.html b/docs/group___main.html index f62f38f..80a0c24 100644 --- a/docs/group___main.html +++ b/docs/group___main.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    diff --git a/docs/group___main.js b/docs/group___main.js index 9920517..c1d2ac0 100644 --- a/docs/group___main.js +++ b/docs/group___main.js @@ -1,11 +1,11 @@ var group___main = [ [ "clutchlog", "classclutchlog.html", [ - [ "System-dependent stack depth", "index.html#autotoc_md24", null ], - [ "System-dependent horizontal fill", "index.html#autotoc_md25", null ], - [ "Dependencies", "index.html#autotoc_md26", null ], - [ "Variable names within the CLUTCHLOG macro", "index.html#autotoc_md27", null ], - [ "Features", "index.html#autotoc_md28", null ], + [ "System-dependent stack depth", "index.html#autotoc_md26", null ], + [ "System-dependent horizontal fill", "index.html#autotoc_md27", null ], + [ "Dependencies", "index.html#autotoc_md28", null ], + [ "Variable names within the CLUTCHLOG macro", "index.html#autotoc_md29", null ], + [ "Features", "index.html#autotoc_md30", null ], [ "scope_t", "structclutchlog_1_1scope__t.html", [ [ "scope_t", "structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572", null ], [ "matches", "structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9", null ], @@ -41,8 +41,8 @@ var group___main = [ "replace", "classclutchlog.html#a972f895c70edc335f3018a2c8971d59e", null ], [ "replace", "classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2", null ], [ "format", "classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761", null ], - [ "log", "classclutchlog.html#a23dbb98f0d3c5cc21c232cde16cf317a", null ], - [ "dump", "classclutchlog.html#a63308e8deae3cfec6801318203494143", null ], + [ "log", "classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a", null ], + [ "dump", "classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb", null ], [ "default_format", "classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc", null ], [ "dump_default_format", "classclutchlog.html#ace879554298e6e6e36dafef330c27be8", null ], [ "dump_default_sep", "classclutchlog.html#af898bffe23b125245e338d7495c76d45", null ], diff --git a/docs/group___use_macros.html b/docs/group___use_macros.html index 359c78e..dfca8d2 100644 --- a/docs/group___use_macros.html +++ b/docs/group___use_macros.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    @@ -98,8 +98,12 @@ Macros #define CLUTCHLOC   __FILE__, __FUNCTION__, __LINE__  Handy shortcuts to location.
      -#define CLUTCHLOG(LEVEL, WHAT) - Log a message at the given level. More...
    +#define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA) + Log a message at the given level and with a given depth delta. More...
    +  + +#define CLUTCHLOG(LEVEL, WHAT)   CLUTCHLOGD(LEVEL, WHAT, 0) + Log a message at the given level.
      #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)  Dump the given container. More...
    @@ -112,14 +116,14 @@ Macros  

    Macro Definition Documentation

    - -

    ◆ CLUTCHLOG

    + +

    ◆ CLUTCHLOGD

    - + @@ -128,7 +132,13 @@ Macros - + + + + + + + @@ -137,13 +147,13 @@ Macros
    #define CLUTCHLOG#define CLUTCHLOGD (   LEVEL,
     WHAT WHAT,
     DEPTH_DELTA 
    -Value:
    do { \
    -
    auto& clutchlog__logger = clutchlog::logger(); \
    -
    std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
    -
    clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC); \
    +Value:
    do { \
    +
    auto& clutchlog__logger = clutchlog::logger(); \
    +
    std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
    +
    clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
    } while(0)
    -

    Log a message at the given level.

    +

    Log a message at the given level and with a given depth delta.

    Definition at line 81 of file clutchlog.h.

    @@ -188,7 +198,7 @@ Macros

    Dump the given container.

    -

    Definition at line 98 of file clutchlog.h.

    +

    Definition at line 107 of file clutchlog.h.

    @@ -233,7 +243,7 @@ Macros

    Call any function if the scope matches.

    -

    Definition at line 115 of file clutchlog.h.

    +

    Definition at line 124 of file clutchlog.h.

    @@ -272,15 +282,15 @@ Macros

    Run any code if the scope matches.

    -

    Definition at line 136 of file clutchlog.h.

    +

    Definition at line 145 of file clutchlog.h.

    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:296
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    #define CLUTCHLOC
    Handy shortcuts to location.
    Definition: clutchlog.h:77
    -
    #define CLUTCHDUMP_DEFAULT_SEP
    Compile-time default item separator for dump.
    Definition: clutchlog.h:239
    +
    #define CLUTCHDUMP_DEFAULT_SEP
    Compile-time default item separator for dump.
    Definition: clutchlog.h:249

    Clutchlog is a spatial logging system that targets versatile debugging. It allows to (de)clutch messages for a given: log level, source code location or call stack depth.

    @@ -232,12 +234,15 @@ Output Configuration
  • {file}: the current file (absolute path),
  • {func}: the current function,
  • {line}: the current line number,
  • -
  • {level_fmt}: the format of the current level (i.e. configured with clutchlog::style).
  • +
  • {level_fmt}: the style of the current level (i.e. configured with clutchlog::style),
  • +
  • {filehash_fmt}: a style for file names, which is value-dependant (see clutchlog::filehash_styles),
  • +
  • {funchash_fmt}: a style for function names, which is value-dependant (see clutchlog::funchash_styles).
  • Some tags are only available on POSIX operating systems as of now:

    • {name}: the name of the current binary,
    • {depth}: the current depth of the call stack,
    • {depth_marks}: as many chevrons > as there is calls in the stack,
    • +
    • {depth_fmt}: a style depending on the current depth value (see clutchlog::depth_styles),
    • {hfill}: Inserts a sequence of characters that will stretch to fill the space available in the current terminal, between the rightmost and leftmost part of the log message.

    @@ -245,8 +250,9 @@ Log Format

    The default log format is "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func} @ {file}:{line}\n", it can be overriden at compile time by defining the CLUTCHLOG_DEFAULT_FORMAT macro.

    By default, and if CLUTCHLOG_DEFAULT_FORMAT is not defined, clutchlog will not put the location-related tags in the message formats (i.e. {name}, {func}, and {line}) when not in Debug builds.

    -Output style

    -

    Output lines can be colored differently depending on the log level.

    // Print error messages in bold red:
    +Output Styling +

    Output lines can be styled differently depending on their content.

    +

    For example, output lines can be colored differently depending on the log level.

    // Print error messages in bold red:
    log.style(level::error, // First, the log level.
    fmt::fg::red, // Then the styles, in any order...
    fmt::typo::bold);
    @@ -261,7 +267,7 @@ Output style
  • numeric triplets or web hex strings will encode a 16 million ("true") colors mode,
  • clutchlog::fg::none and clutchlog::bg::none can be passed in all modes.
  • -

    For example, all the following lines encode a bright red foreground for the critical level:

    log.style(level:critical,
    +

    For example, all the following lines encode a bright red foreground for the critical level (see the "Colors" section below):

    log.style(level:critical,
    fmt::fg::red); // 16-colors mode.
    log.style(level:critical,
    255); // 256-colors mode.
    @@ -335,28 +341,42 @@ Colors

    In 16M-colors mode, if you want to only encode the background color, you cannot just omit the foreground color, you have to pass a fg::none tag as first argument.

    log.style(level::info, fg::none, 100,0,0); // No color over dark red.
    log.style(level::info, fg::none, 100,0,0, typo::bold); // No color over bold dark red.
    -

    +

    +Value-dependant Format Tags

    +

    Some tags can be used to change the style of (part of) the output line,

    +

    depending on its content. The {filehash_fmt} and {funchash_fmt} will introduce a styling sequence which depends on the current file name, and function name respectively. The chosen style is chosen at random among the candidate ones, but will always be the same for each value.

    +

    The set of candidate styles can be configured with clutchlog::filehash_styles and clutchlog::funchash_styles, which both take a vector of clutchlog::fmt objects as argument:

    // Either one or the other color for filenames:
    +
    log.filehash_styles( { fmt(fg::red), fmt(fg::yellow) } );
    +
    // This would fix the function name style to a single one:
    +
    log.funchash_styles( { fmt(typo::bold) } );
    +
    // Works with any `fmt` constructor
    +
    // (here, shades of blues in 256-colors mode):
    +
    log.funchash_styles( { fmt(33), fmt(27), fmt(39), fmt(45) } );
    +

    The same idea applies to {depth_fmt}. However, if clutchlog::depth_styles is configured, then the styles are chosen in order. That is, a depth of 1 would lead to the first style being chosen. If the current depth of the stack is larger than the number of configured styles, then the last one is used. For example:

    // Increasingly darker depth level colors (using the 256-colors mode).
    +
    log.depth_styles({ fmt(255), fmt(250), fmt(245), fmt(240), fmt(235) });
    +

    If clutchlog::depth_styles is set, the {depth_marks} template tag will render with each mark having each own style corresponding to its depth. Note: a depth of zero showing no mark, the first style in the list is never applied to marks.

    +

    Advanced Usage

    -

    +

    More Output Configuration

    -

    +

    Dump Format

    The default format of the first line of comment added with the dump macro is "# [{name}] {level} in {func} (at depth {depth}) @ {file}:{line}". It can be edited with the format_comment method. If it is set to an empty string, then no comment line is added. The default can be modified at compile time with CLUTCHDUMP_DEFAULT_FORMAT.

    By default, the separator between items in the container is a new line. To change this behaviour, you can change CLUTCHDUMP_DEFAULT_SEP or call the low-level dump method.

    By default, and if CLUTCHDUMP_DEFAULT_FORMAT is not defined, clutchlog will not put the location-related tags in the message formats (i.e. {file} and {line}) when not in Debug builds.

    -

    +

    Stack Depth Mark

    The mark used with the {depth_marks} tag can be configured with the clutchlog::depth_mark method, and its default with the CLUTCHLOG_DEFAULT_DEPTH_MARK macro:

    log.depth_mark(CLUTCHLOG_DEFAULT_DEPTH_MARK); // Defaults to ">".
    -

    +

    Horizontal Filling

    The character used with the {hfill} tag can be configured wth the clutchlog::hfill_mark method, and its default with the CLUTCHLOG_DEFAULT_HFILL_MARK macro:

    log.hfill_mark(CLUTCHLOG_DEFAULT_HFILL_MARK); // Defaults to '.'.

    Clutchlog measures the width of the standard error channel. If it is redirected, it may be measured as very large (or very small). Thus, the clutchlog::hfill_min clutchlog::hfill_max accessors allow to set a minimum and a maximum width (in number of characters).

    log.hfill_max(CLUTCHLOG_DEFAULT_HFILL_MAX); // Defaults to 300.
    log.hfill_min(CLUTCHLOG_DEFAULT_HFILL_MIN); // Defaults to 150.

    Note: clutchlog will use the measured width, unless it goes out of [clutchlog::hfill_min,clutchlog::hfill_max], in which case it will be caped to those bounds.

    -

    +

    Stack Depth

    By default, clutchlog removes 5 levels of the calls stack, so that your main entrypoint corresponds to a depth of zero. You can change this behaviour by defining the CLUTCHLOG_STRIP_CALLS macro, or calling clutchlog::strip_calls.

    log.strip_calls(CLUTCHLOG_STRIP_CALLS); // Defaults to 5.
    -

    +

    Disabled calls

    By default, clutchlog is always enabled if the NDEBUG preprocessor variable is not defined (this variable is set by CMake in build types that differs from Debug).

    You can however force clutchlog to be enabled in any build type by setting the WITH_CLUTCHLOG preprocessor variable.

    @@ -365,26 +385,32 @@ Disabled calls
    #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG clutchlog::level::xdebug

    Note that allowing a log level does not mean that it will actually output something. If the configured log level at runtime is lower than the log level of the message, it will still not be printed.

    This behavior intend to remove as many conditional statements as possible when not debugging, without having to use preprocessor guards around calls to clutchlog, thus saving run time at no readability cost.

    -

    +

    Low-level API

    All configuration setters have a getters counterpart, with the same name but taking no parameter, for example:

    std::string mark = log.depth_mark();
    -

    To control more precisely the logging, one can use the low-level clutchlog::log method:

    log.log(clutchlog::level::xdebug, "hello world", "main.cpp", "main", 122);
    +

    To control more precisely the logging, one can use the low-level clutchlog::log method:

    log.log(clutchlog::level::xdebug, "hello world", "main.cpp", "main", 122);

    A helper macro can helps to fill in the location with the actual one, as seen by the compiler:

    log.log(clutchlog::level::xdebug, "hello world", CLUTCHLOC);

    A similar dump method exists:

    log.dump(clutchlog::level::xdebug, cont.begin(), cont.end(), CLUTCHLOC, "dumped_{n}.dat", "\n");
    log.dump(clutchlog::level::xdebug, cont.begin(), cont.end(), "main.cpp", "main", 122, "dumped.dat", "\n\n");

    You can access the identifier of log levels with clutchlog::level_of:

    log.threshold( log.level_of("XDebug") ); // You have to know the exact string.
    -

    +

    (De)clutch any function call

    The CLUTHFUNC macro allows to wrap any function within the current logger.

    For instance, this can be useful if you want to (de)clutch calls to asserts. To do that, just declare your own macro:

    #define ASSERT(...) { CLUTCHFUNC(error, assert, __VA_ARGS__) }

    Thus, any call like ASSERT(x > 3); will be declutchable with the same configuration than a call to CLUTCHLOG.

    -

    +

    (De)clutch any code section

    The CLUTCHCODE macro allows to wrap any code within the current logger.

    For instance:

    std::clog << "We are clutched!\n";
    );
    -

    +

    +Manually Increase Stack Depth

    +

    You may want to manually increase the stack depth for a given logging call, for instance to subdivise a single function in sections. To do so, you can use the CLUTCHLOGD macro, which take an additional argument, in the form of the number of additional (fake) stack depths you want:

    CLUTCHLOG( debug, "Call"); // Regular macro.
    +
    CLUTCHLOGD(debug, "Sub call", 1); // Adds an additional (fake) stack depth.
    +
    CLUTCHLOGD(debug, "Sub sub!", 2); // Adds two additional (fake) stack depths.
    +

    That way, the depth will be rendered to the actual depth, plus the additional depth delta. Note that the displayed function will stay the same. Any filtering on the stack depth will take into account the fake depth and not the real one.

    +

    Examples

    Here what you would do to setup clutchlog with the default configuration:

    auto& log = clutchlog::logger();
    log.out(std::clog);
    @@ -456,29 +482,29 @@ Examples
    log.hfill_char('.');
    log.hfill_max(300);
    log.hfill_style(clutchlog::fmt::fg::none);
    -

    +

    Limitations

    -

    +

    System-dependent stack depth

    Because access to the call stack depth and program name are system-dependent, the features relying on the depth of the call stack and the display of the program name are only available for operating systems having the following headers: execinfo.h, stdlib.h and libgen.h (so far, tested with Linux).

    Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSINFO to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

    #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    log.depth( x );
    #endif
    -

    +

    System-dependent horizontal fill

    Because access to the current terminal width is system-dependent, the {hfill} format tag feature is only available for operating systems having the following headers: sys/ioctl.h, stdio.h and unistd.h (so far, tested with Linux).

    Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSIOCTL to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

    #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
    log.hfill_mark( '_' );
    #endif

    If you use unicode characters in your template, the horizontal width will not be computed properly, resulting in incorrectly right-aligned lines. Solving this would require the use of third-party libraries, making portability more difficult.

    -

    +

    Dependencies

    Some colors/styles may not be supported by some exotic terminal emulators.

    Clutchlog needs C++-17 with the filesystem feature. You may need to indicate -std=c++17 -lstdc++fs to some compilers.

    -

    +

    Variable names within the CLUTCHLOG macro

    Calling the CLUTCHLOG macro with a message using a variable named clutchlog__msg will end in an error.

    -

    +

    Features

    What Clutchlog do not provide at the moment (but may in a near future):

      @@ -494,7 +520,7 @@ Features
    • Automatic argument parser (please, use a dedicated lib).
    • Signal handling (WTF would you do that, anyway?).
    -

    +

    Build and tests

    To use clutchlog, just include its header in your code and either ensure that the NDEBUG preprocessor variable is not set, either define the WITH_CLUTCHLOG preprocessor variable.

    If you're using CMake (or another modern build system), it will unset NDEBUG —and thus enable clutchlog— only for the "Debug" build type, which is usually what you want if you use clutchlog, anyway.

    @@ -507,17 +533,18 @@ Build and tests -
    #define CLUTCHLOG_DEFAULT_DEPTH_MARK
    Compile-time default mark for stack depth.
    Definition: clutchlog.h:246
    +
    #define CLUTCHLOG_DEFAULT_DEPTH_MARK
    Compile-time default mark for stack depth.
    Definition: clutchlog.h:256
    enum clutchlog::fmt::typo style
    Typographic style.
    -
    #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
    Dump the given container.
    Definition: clutchlog.h:98
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:296
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:366
    +
    #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
    Log a message at the given level and with a given depth delta.
    Definition: clutchlog.h:81
    +
    #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
    Dump the given container.
    Definition: clutchlog.h:107
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:376
    #define CLUTCHLOC
    Handy shortcuts to location.
    Definition: clutchlog.h:77
    -
    #define CLUTCHLOG_DEFAULT_HFILL_MARK
    Character used as a filling for right-align the right part of messages with "{hfill}".
    Definition: clutchlog.h:260
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:81
    -
    #define CLUTCHFUNC(LEVEL, FUNC,...)
    Call any function if the scope matches.
    Definition: clutchlog.h:115
    -
    #define CLUTCHLOG_STRIP_CALLS
    Compile-time number of call stack levels to remove from depth display by default.
    Definition: clutchlog.h:253
    -
    #define CLUTCHCODE(LEVEL,...)
    Run any code if the scope matches.
    Definition: clutchlog.h:136
    +
    #define CLUTCHLOG_DEFAULT_HFILL_MARK
    Character used as a filling for right-align the right part of messages with "{hfill}".
    Definition: clutchlog.h:270
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    +
    #define CLUTCHFUNC(LEVEL, FUNC,...)
    Call any function if the scope matches.
    Definition: clutchlog.h:124
    +
    #define CLUTCHLOG_STRIP_CALLS
    Compile-time number of call stack levels to remove from depth display by default.
    Definition: clutchlog.h:263
    +
    #define CLUTCHCODE(LEVEL,...)
    Run any code if the scope matches.
    Definition: clutchlog.h:145
    + + + + + + + + +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    t-depth-delta.cpp
    +
    +
    +
    1 #include <iostream>
    +
    2 #include <limits>
    +
    3 
    +
    4 #include "../clutchlog/clutchlog.h"
    +
    5 
    +
    6 void deepcall()
    +
    7 {
    +
    8  CLUTCHLOG(warning,"at depth 4");
    +
    9  CLUTCHLOGD(warning,"at depth 4+1", 1);
    +
    10  CLUTCHLOGD(warning,"at depth 4+2", 2);
    +
    11 }
    +
    12 
    +
    13 void subsubsubcall()
    +
    14 {
    +
    15  CLUTCHLOG(warning,"at depth 3");
    +
    16  CLUTCHLOGD(warning,"at depth 3+1", 1);
    +
    17  CLUTCHLOGD(warning,"at depth 3+2", 2);
    +
    18  deepcall();
    +
    19 }
    +
    20 
    +
    21 void subsubcall()
    +
    22 {
    +
    23  CLUTCHLOG(warning,"at depth 2");
    +
    24  CLUTCHLOGD(warning,"at depth 2+1", 1);
    +
    25  CLUTCHLOGD(warning,"at depth 2+2", 2);
    +
    26  subsubsubcall();
    +
    27 }
    +
    28 
    +
    29 void subcall()
    +
    30 {
    +
    31  CLUTCHLOG(warning,"at depth 1");
    +
    32  CLUTCHLOGD(warning,"at depth 1+1", 1);
    +
    33  CLUTCHLOGD(warning,"at depth 1+2", 2);
    +
    34  subsubcall();
    +
    35 }
    +
    36 
    +
    37 int main(/*const int argc, char* argv[]*/)
    +
    38 {
    +
    39  auto& log = clutchlog::logger();
    +
    40  using fmt = clutchlog::fmt;
    +
    41  using typo = clutchlog::fmt::typo;
    +
    42 
    +
    43  fmt reset(typo::reset);
    +
    44  std::ostringstream tpl;
    +
    45  tpl << "{depth_fmt}{depth} {depth_marks}"
    +
    46  << reset << "{funchash_fmt}in {func} {msg}\t\n";
    +
    47  log.format(tpl.str());
    +
    48  log.threshold(clutchlog::level::xdebug);
    +
    49  std::vector<fmt> greys = {fmt(15)};
    +
    50  for(unsigned short i=255; i > 231; i-=3) {
    +
    51  greys.push_back( fmt(i) ); }
    +
    52  log.depth_styles( greys );
    +
    53  log.depth_mark("| ");
    +
    54 
    +
    55  CLUTCHLOG(warning,"in main");
    +
    56  subcall();
    +
    57 }
    +
    58 
    +
    +
    +
    #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
    Log a message at the given level and with a given depth delta.
    Definition: clutchlog.h:81
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:376
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:389
    + + + + diff --git a/docs/t-dump_8cpp_source.html b/docs/t-dump_8cpp_source.html index 86d4bdd..b9fbeba 100644 --- a/docs/t-dump_8cpp_source.html +++ b/docs/t-dump_8cpp_source.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.14 +  0.15
    @@ -111,8 +111,8 @@ $(document).ready(function(){initNavTree('t-dump_8cpp_source.html',''); initResi
    21 }
    -
    #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
    Dump the given container.
    Definition: clutchlog.h:98
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:296
    +
    #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
    Dump the given container.
    Definition: clutchlog.h:107
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:366
    -
    bg
    Background color codes.
    Definition: clutchlog.h:411
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:379
    -
    fg
    Foreground color codes.
    Definition: clutchlog.h:390
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:376
    +
    bg
    Background color codes.
    Definition: clutchlog.h:421
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:389
    +
    fg
    Foreground color codes.
    Definition: clutchlog.h:400
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:296
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:366
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:81
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:379
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:376
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:389
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:296
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:81
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:81
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    diff --git a/docs/classclutchlog.html b/docs/classclutchlog.html index 907d2d3..31e86fb 100644 --- a/docs/classclutchlog.html +++ b/docs/classclutchlog.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    @@ -185,6 +185,10 @@ void fmt style (level stage) const  Get the configured fmt instance of the given log level.
      + +void filename (filename f) + Sets the file naming scheme. *‍/.
    Low-level API
    scope_t locate (const level &stage, const std::string &file, const std::string &func, const size_t line) const @@ -272,6 +276,18 @@ High-level API }  Available log levels.
      +enum  filename {
    +  path, +base, +dir, +dirbase, +
    +  stem, +dirstem +
    + } + Available filename rendering methods.
    +  static clutchloglogger ()  Get the logger instance. More...
      @@ -334,6 +350,10 @@ std::vector< fmt > std::vector< fmt_funchash_fmts  List of candidate format objects for value-dependant function name styling.
      + +filename _filename + Filename rendering method.
     clutchlog (clutchlog const &)=delete   @@ -403,9 +423,9 @@ void operator= (Style will be chosen based on the hash value of the filename among the candidate ones.

    See the {filehash_fmt} template tag.

    -

    Definition at line 1038 of file clutchlog.h.

    +

    Definition at line 1045 of file clutchlog.h.

    -

    References _filehash_fmts.

    +

    References _filehash_fmts.

    @@ -437,9 +457,9 @@ void operator= (Style will be chosen based on the hash value of the filename among the candidate ones.

    See the {funchash_fmt} template tag.

    -

    Definition at line 1046 of file clutchlog.h.

    +

    Definition at line 1053 of file clutchlog.h.

    -

    References _funchash_fmts.

    +

    References _funchash_fmts.

    @@ -471,7 +491,7 @@ void operator= (The given list should be ordered, styles will be applied for the corresponding depth level. If the actual depth is larger than the number of styles, the last one is used.

    See the {depth_fmt} template tag.

    -

    Definition at line 1055 of file clutchlog.h.

    +

    Definition at line 1062 of file clutchlog.h.

    @@ -502,11 +522,11 @@ void operator= (Return the log level tag corresponding to the given pre-configured name.

    Note
    This is case sensitive, see the pre-configured _level_word.
    -

    Definition at line 1070 of file clutchlog.h.

    +

    Definition at line 1077 of file clutchlog.h.

    -

    References _word_level.

    +

    References _word_level.

    -

    Referenced by threshold().

    +

    Referenced by threshold().

    @@ -549,11 +569,11 @@ template<class ... FMT>

    Set the style (color and typo) of the given log level.

    This version accept style arguments as if they were passed to clutchlog::fmt.

    -

    Definition at line 1104 of file clutchlog.h.

    +

    Definition at line 1111 of file clutchlog.h.

    -

    References style().

    +

    References style().

    -

    Referenced by style().

    +

    Referenced by style().

    @@ -601,9 +621,9 @@ template<class ... FMT>
    log.replace("{greet} {world}", "\\{greet\\}", "hello");
    // returns "hello {world}"
    -

    Definition at line 1193 of file clutchlog.h.

    +

    Definition at line 1203 of file clutchlog.h.

    -

    Referenced by dump(), format(), and replace().

    +

    Referenced by dump(), format(), and replace().

    @@ -613,7 +633,7 @@ template<class ... FMT>
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
    Print a log message IF the location matches the given one.
    Definition: clutchlog.h:1374
    +
    void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
    Print a log message IF the location matches the given one.
    Definition: clutchlog.h:1412
    @@ -415,9 +415,9 @@ std::ostream &  diff --git a/docs/clutchlog_8h.html b/docs/clutchlog_8h.html index 2dbb3b1..1dc3cd5 100644 --- a/docs/clutchlog_8h.html +++ b/docs/clutchlog_8h.html @@ -28,7 +28,7 @@ diff --git a/docs/clutchlog_8h__dep__incl.map b/docs/clutchlog_8h__dep__incl.map index 4740dc4..8180ccb 100644 --- a/docs/clutchlog_8h__dep__incl.map +++ b/docs/clutchlog_8h__dep__incl.map @@ -1,5 +1,5 @@ - + @@ -8,8 +8,9 @@ - - - - + + + + + diff --git a/docs/clutchlog_8h__dep__incl.md5 b/docs/clutchlog_8h__dep__incl.md5 index 440c2e6..80b393d 100644 --- a/docs/clutchlog_8h__dep__incl.md5 +++ b/docs/clutchlog_8h__dep__incl.md5 @@ -1 +1 @@ -03a5adb412c477109d73f308278ec653 \ No newline at end of file +a81a51c1f045be087627e35d5e6b32ef \ No newline at end of file diff --git a/docs/clutchlog_8h__dep__incl.svg b/docs/clutchlog_8h__dep__incl.svg index 1422fbd..e4f4e4c 100644 --- a/docs/clutchlog_8h__dep__incl.svg +++ b/docs/clutchlog_8h__dep__incl.svg @@ -46,7 +46,7 @@ if (edges && edges.length) { @@ -54,13 +54,13 @@ var sectionId = 'dynsection-1'; clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -76,8 +76,8 @@ var sectionId = 'dynsection-1'; Node1->Node2 - - + + @@ -91,8 +91,8 @@ var sectionId = 'dynsection-1'; Node1->Node3 - - + + @@ -106,8 +106,8 @@ var sectionId = 'dynsection-1'; Node1->Node4 - - + + @@ -121,8 +121,8 @@ var sectionId = 'dynsection-1'; Node1->Node5 - - + + @@ -136,8 +136,8 @@ var sectionId = 'dynsection-1'; Node1->Node6 - - + + @@ -151,8 +151,8 @@ var sectionId = 'dynsection-1'; Node1->Node7 - - + + @@ -166,8 +166,8 @@ var sectionId = 'dynsection-1'; Node1->Node8 - - + + @@ -181,68 +181,83 @@ var sectionId = 'dynsection-1'; Node1->Node9 - - + + Node10 - - -t-fmt-constructors.cpp + + +t-filename.cpp Node1->Node10 - - + + Node11 - - -t-hash-color.cpp + + +t-fmt-constructors.cpp Node1->Node11 - - + + Node12 - - -t-log.cpp + + +t-hash-color.cpp Node1->Node12 - - + + Node13 - - -t-one-line-if.cpp + + +t-log.cpp Node1->Node13 - - + + + + + +Node14 + + +t-one-line-if.cpp + + + + + +Node1->Node14 + + diff --git a/docs/clutchlog_8h__dep__incl_org.svg b/docs/clutchlog_8h__dep__incl_org.svg index 3682d73..bcf3f63 100644 --- a/docs/clutchlog_8h__dep__incl_org.svg +++ b/docs/clutchlog_8h__dep__incl_org.svg @@ -4,17 +4,17 @@ - + clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -30,8 +30,8 @@ Node1->Node2 - - + + @@ -45,8 +45,8 @@ Node1->Node3 - - + + @@ -60,8 +60,8 @@ Node1->Node4 - - + + @@ -75,8 +75,8 @@ Node1->Node5 - - + + @@ -90,8 +90,8 @@ Node1->Node6 - - + + @@ -105,8 +105,8 @@ Node1->Node7 - - + + @@ -120,8 +120,8 @@ Node1->Node8 - - + + @@ -135,68 +135,83 @@ Node1->Node9 - - + + Node10 - - -t-fmt-constructors.cpp + + +t-filename.cpp Node1->Node10 - - + + Node11 - - -t-hash-color.cpp + + +t-fmt-constructors.cpp Node1->Node11 - - + + Node12 - - -t-log.cpp + + +t-hash-color.cpp Node1->Node12 - - + + Node13 - - -t-one-line-if.cpp + + +t-log.cpp Node1->Node13 - - + + + + + +Node14 + + +t-one-line-if.cpp + + + + + +Node1->Node14 + + diff --git a/docs/clutchlog_8h_source.html b/docs/clutchlog_8h_source.html index 71543c2..fe6753b 100644 --- a/docs/clutchlog_8h_source.html +++ b/docs/clutchlog_8h_source.html @@ -28,7 +28,7 @@ Logo @@ -343,1177 +343,1216 @@ $(document).ready(function(){initNavTree('clutchlog_8h_source.html',''); initRes
    311 
    313  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
    314 
    -
    376  class fmt {
    -
    377  public:
    -
    379  enum class ansi {
    -
    381  colors_16 = -1, // Not supposed to be casted.
    -
    383  colors_256 = 5, // Casted as short in color::operator<<.
    -
    385  colors_16M = 2 // Casted as short in color::operator<<
    -
    386  } mode;
    -
    387 
    -
    389  enum class typo {
    -
    390  reset = 0,
    -
    391  bold = 1,
    -
    392  underline = 4,
    -
    393  inverse = 7,
    -
    394  none = -1
    -
    395  } style;
    -
    396 
    -
    399  enum class fg {
    -
    401  black = 30,
    -
    402  red = 31,
    -
    403  green = 32,
    -
    404  yellow = 33,
    -
    405  blue = 34,
    -
    406  magenta = 35,
    -
    407  cyan = 36,
    -
    408  white = 37,
    -
    409  bright_black = 90,
    -
    410  bright_red = 91,
    -
    411  bright_green = 92,
    -
    412  bright_yellow = 93,
    -
    413  bright_blue = 94,
    -
    414  bright_magenta = 95,
    -
    415  bright_cyan = 96,
    -
    416  bright_white = 97,
    -
    417  none = -1
    -
    418  } fore;
    -
    419 
    -
    421  enum class bg {
    -
    422  black = 40,
    -
    423  red = 41,
    -
    424  green = 42,
    -
    425  yellow = 43,
    -
    426  blue = 44,
    -
    427  magenta = 45,
    -
    428  cyan = 46,
    -
    429  white = 47,
    -
    430  bright_black = 100,
    -
    431  bright_red = 101,
    -
    432  bright_green = 102,
    -
    433  bright_yellow = 103,
    -
    434  bright_blue = 104,
    -
    435  bright_magenta = 105,
    -
    436  bright_cyan = 106,
    -
    437  bright_white = 107,
    -
    438  none = -1
    -
    439  } back;
    -
    440 
    -
    441  protected:
    -
    443  friend std::ostream& operator<<(std::ostream& os, const std::tuple<fg,bg,typo>& fbs)
    -
    444  {
    -
    445  auto [f,b,s] = fbs;
    -
    446  std::vector<short> codes; codes.reserve(3);
    -
    447  if(f != fg::none) { codes.push_back(static_cast<short>(f));}
    -
    448  if(b != bg::none) { codes.push_back(static_cast<short>(b));}
    -
    449  if(s != typo::none) { codes.push_back(static_cast<short>(s));}
    -
    450  if(codes.size() == 0) {
    -
    451  return os;
    -
    452 
    -
    453  } else {
    -
    454  os << "\033[";
    -
    455  os << codes[0];
    -
    456  for(size_t i=1; i < codes.size(); ++i) {
    -
    457  os << ";" << codes[i];
    -
    458  }
    -
    459  os << "m";
    -
    460  }
    -
    461  return os;
    -
    462  }
    -
    463 
    -
    465  friend std::ostream& operator<<(std::ostream& os, const typo& s)
    -
    466  {
    -
    467  if(s != typo::none) {
    -
    468  os << "\033[" << static_cast<short>(s) << "m";
    -
    469  }
    -
    470  return os;
    -
    471  }
    -
    472 
    -
    475  protected:
    -
    480  struct color {
    -
    481  ansi mode; // Not const to allow for the implicit copy assignemnt operator.
    -
    482 
    -
    484  enum class ground { // idem.
    -
    485  fore = 38,
    -
    486  back = 48
    -
    487  } type;
    -
    488 
    -
    494  color(ansi a, ground g) : mode(a), type(g) {}
    -
    495 
    -
    497  virtual bool is_set() const = 0;
    +
    316  enum filename {path, base, dir, dirbase, stem, dirstem};
    +
    317 
    +
    379  class fmt {
    +
    380  public:
    +
    382  enum class ansi {
    +
    384  colors_16 = -1, // Not supposed to be casted.
    +
    386  colors_256 = 5, // Casted as short in color::operator<<.
    +
    388  colors_16M = 2 // Casted as short in color::operator<<
    +
    389  } mode;
    +
    390 
    +
    392  enum class typo {
    +
    393  reset = 0,
    +
    394  bold = 1,
    +
    395  underline = 4,
    +
    396  inverse = 7,
    +
    397  none = -1
    +
    398  } style;
    +
    399 
    +
    402  enum class fg {
    +
    404  black = 30,
    +
    405  red = 31,
    +
    406  green = 32,
    +
    407  yellow = 33,
    +
    408  blue = 34,
    +
    409  magenta = 35,
    +
    410  cyan = 36,
    +
    411  white = 37,
    +
    412  bright_black = 90,
    +
    413  bright_red = 91,
    +
    414  bright_green = 92,
    +
    415  bright_yellow = 93,
    +
    416  bright_blue = 94,
    +
    417  bright_magenta = 95,
    +
    418  bright_cyan = 96,
    +
    419  bright_white = 97,
    +
    420  none = -1
    +
    421  } fore;
    +
    422 
    +
    424  enum class bg {
    +
    425  black = 40,
    +
    426  red = 41,
    +
    427  green = 42,
    +
    428  yellow = 43,
    +
    429  blue = 44,
    +
    430  magenta = 45,
    +
    431  cyan = 46,
    +
    432  white = 47,
    +
    433  bright_black = 100,
    +
    434  bright_red = 101,
    +
    435  bright_green = 102,
    +
    436  bright_yellow = 103,
    +
    437  bright_blue = 104,
    +
    438  bright_magenta = 105,
    +
    439  bright_cyan = 106,
    +
    440  bright_white = 107,
    +
    441  none = -1
    +
    442  } back;
    +
    443 
    +
    444  protected:
    +
    446  friend std::ostream& operator<<(std::ostream& os, const std::tuple<fg,bg,typo>& fbs)
    +
    447  {
    +
    448  auto [f,b,s] = fbs;
    +
    449  std::vector<short> codes; codes.reserve(3);
    +
    450  if(f != fg::none) { codes.push_back(static_cast<short>(f));}
    +
    451  if(b != bg::none) { codes.push_back(static_cast<short>(b));}
    +
    452  if(s != typo::none) { codes.push_back(static_cast<short>(s));}
    +
    453  if(codes.size() == 0) {
    +
    454  return os;
    +
    455 
    +
    456  } else {
    +
    457  os << "\033[";
    +
    458  os << codes[0];
    +
    459  for(size_t i=1; i < codes.size(); ++i) {
    +
    460  os << ";" << codes[i];
    +
    461  }
    +
    462  os << "m";
    +
    463  }
    +
    464  return os;
    +
    465  }
    +
    466 
    +
    468  friend std::ostream& operator<<(std::ostream& os, const typo& s)
    +
    469  {
    +
    470  if(s != typo::none) {
    +
    471  os << "\033[" << static_cast<short>(s) << "m";
    +
    472  }
    +
    473  return os;
    +
    474  }
    +
    475 
    +
    478  protected:
    +
    483  struct color {
    +
    484  ansi mode; // Not const to allow for the implicit copy assignemnt operator.
    +
    485 
    +
    487  enum class ground { // idem.
    +
    488  fore = 38,
    +
    489  back = 48
    +
    490  } type;
    +
    491 
    +
    497  color(ansi a, ground g) : mode(a), type(g) {}
    498 
    -
    500  virtual std::ostream& print_on( std::ostream& os) const = 0;
    +
    500  virtual bool is_set() const = 0;
    501 
    -
    503  friend std::ostream& operator<<(std::ostream& os, const color& c)
    -
    504  {
    -
    505  if(c.is_set()) {
    -
    506  os << "\033[" << static_cast<short>(c.type) << ";" << static_cast<short>(c.mode) << ";";
    -
    507  c.print_on(os);
    -
    508  os << "m";
    -
    509  }
    -
    510  return os;
    -
    511  }
    -
    512  };
    -
    513 
    -
    514  // There is no color_16 because it would be the same as color_256, only with different indices,
    -
    515  // hence making it more complicated for the user to select the right constructor.
    -
    516  // Here, we just use enum for 16 colors, and indices for 256 colors.
    -
    517 
    -
    519  struct color_256 : public color {
    -
    523  short index;
    -
    524 
    -
    528  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
    -
    529 
    -
    535  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {assert(-1 <= i and i <= 255);}
    -
    536 
    -
    538  bool is_set() const {return index > -1;}
    +
    503  virtual std::ostream& print_on( std::ostream& os) const = 0;
    +
    504 
    +
    506  friend std::ostream& operator<<(std::ostream& os, const color& c)
    +
    507  {
    +
    508  if(c.is_set()) {
    +
    509  os << "\033[" << static_cast<short>(c.type) << ";" << static_cast<short>(c.mode) << ";";
    +
    510  c.print_on(os);
    +
    511  os << "m";
    +
    512  }
    +
    513  return os;
    +
    514  }
    +
    515  };
    +
    516 
    +
    517  // There is no color_16 because it would be the same as color_256, only with different indices,
    +
    518  // hence making it more complicated for the user to select the right constructor.
    +
    519  // Here, we just use enum for 16 colors, and indices for 256 colors.
    +
    520 
    +
    522  struct color_256 : public color {
    +
    526  short index;
    +
    527 
    +
    531  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
    +
    532 
    +
    538  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {assert(-1 <= i and i <= 255);}
    539 
    -
    541  std::ostream& print_on( std::ostream& os) const
    -
    542  {
    -
    543  os << index;
    -
    544  return os;
    -
    545  }
    -
    546  };
    -
    547 
    -
    549  struct fg_256 : public color_256 {
    -
    551  fg_256() : color_256(ground::fore) {}
    -
    552 
    -
    556  fg_256(const short f) : color_256(ground::fore, f) {}
    -
    557 
    -
    561  fg_256(const fg&) : color_256(ground::fore, -1) {}
    -
    562 
    -
    563  } fore_256;
    -
    564 
    -
    566  struct bg_256 : public color_256 {
    -
    568  bg_256() : color_256(ground::back) {}
    -
    569 
    -
    573  bg_256(const short b) : color_256(ground::back, b) {}
    -
    574 
    -
    578  bg_256(const bg&) : color_256(ground::back, -1) {}
    -
    579 
    -
    580  } back_256;
    -
    581 
    -
    583  struct color_16M : public color {
    -
    587  short red, green, blue;
    -
    588 
    -
    592  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
    -
    593 
    -
    601  color_16M(ground t, short r, short g, short b)
    -
    602  : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
    -
    603 
    -
    611  color_16M(ground t, const std::string& srgb) : color(ansi::colors_16M, t)
    -
    612  {
    -
    613  assert(srgb.size() == 7);
    -
    614  if(srgb.size() != 7) {
    -
    615  red = -1;
    -
    616  green = -1;
    -
    617  blue = -1;
    -
    618  } else {
    -
    619  char i = 0;
    -
    620  if(srgb.at(0) == '#') {
    -
    621  i = 1;
    -
    622  }
    -
    623  std::istringstream(srgb.substr(0+i,2)) >> std::hex >> red;
    -
    624  std::istringstream(srgb.substr(2+i,2)) >> std::hex >> green;
    -
    625  std::istringstream(srgb.substr(4+i,2)) >> std::hex >> blue;
    -
    626  }
    -
    627  assert(-1 <= red and red <= 255);
    -
    628  assert(-1 <= green and green <= 255);
    -
    629  assert(-1 <= blue and blue <= 255);
    -
    630  }
    -
    631 
    -
    633  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
    +
    541  bool is_set() const {return index > -1;}
    +
    542 
    +
    544  std::ostream& print_on( std::ostream& os) const
    +
    545  {
    +
    546  os << index;
    +
    547  return os;
    +
    548  }
    +
    549  };
    +
    550 
    +
    552  struct fg_256 : public color_256 {
    +
    554  fg_256() : color_256(ground::fore) {}
    +
    555 
    +
    559  fg_256(const short f) : color_256(ground::fore, f) {}
    +
    560 
    +
    564  fg_256(const fg&) : color_256(ground::fore, -1) {}
    +
    565 
    +
    566  } fore_256;
    +
    567 
    +
    569  struct bg_256 : public color_256 {
    +
    571  bg_256() : color_256(ground::back) {}
    +
    572 
    +
    576  bg_256(const short b) : color_256(ground::back, b) {}
    +
    577 
    +
    581  bg_256(const bg&) : color_256(ground::back, -1) {}
    +
    582 
    +
    583  } back_256;
    +
    584 
    +
    586  struct color_16M : public color {
    +
    590  short red, green, blue;
    +
    591 
    +
    595  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
    +
    596 
    +
    604  color_16M(ground t, short r, short g, short b)
    +
    605  : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
    +
    606 
    +
    614  color_16M(ground t, const std::string& srgb) : color(ansi::colors_16M, t)
    +
    615  {
    +
    616  assert(srgb.size() == 7);
    +
    617  if(srgb.size() != 7) {
    +
    618  red = -1;
    +
    619  green = -1;
    +
    620  blue = -1;
    +
    621  } else {
    +
    622  char i = 0;
    +
    623  if(srgb.at(0) == '#') {
    +
    624  i = 1;
    +
    625  }
    +
    626  std::istringstream(srgb.substr(0+i,2)) >> std::hex >> red;
    +
    627  std::istringstream(srgb.substr(2+i,2)) >> std::hex >> green;
    +
    628  std::istringstream(srgb.substr(4+i,2)) >> std::hex >> blue;
    +
    629  }
    +
    630  assert(-1 <= red and red <= 255);
    +
    631  assert(-1 <= green and green <= 255);
    +
    632  assert(-1 <= blue and blue <= 255);
    +
    633  }
    634 
    -
    636  std::ostream& print_on( std::ostream& os) const
    -
    637  {
    -
    638  os << red << ";" << green << ";" << blue;
    -
    639  return os;
    -
    640  }
    -
    641  };
    -
    642 
    -
    644  struct fg_16M : public color_16M {
    -
    646  fg_16M() : color_16M(ground::fore) {}
    -
    647 
    -
    656  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
    -
    657 
    -
    664  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
    -
    665 
    -
    669  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
    -
    670 
    -
    671  } fore_16M;
    -
    672 
    -
    674  struct bg_16M : public color_16M {
    -
    676  bg_16M() : color_16M(ground::back) {}
    -
    677 
    -
    686  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
    -
    687 
    -
    694  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
    -
    695 
    -
    699  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
    -
    700 
    -
    701  } back_16M;
    -
    702 
    -
    705  public:
    -
    707  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
    -
    708 
    -
    711  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    712  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    713  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    714  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    715  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    716  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    721  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
    -
    722  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
    -
    723  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
    -
    728  fmt(const short fr, const short fg, const short fb,
    -
    729  const short gr, const short gg, const short gb,
    -
    730  typo s = typo::none)
    -
    731  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
    -
    732  fmt(fg,
    -
    733  const short gr, const short gg, const short gb,
    -
    734  typo s = typo::none)
    -
    735  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
    -
    736  fmt(const short fr, const short fg, const short fb,
    -
    737  bg, typo s = typo::none)
    -
    738  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
    +
    636  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
    +
    637 
    +
    639  std::ostream& print_on( std::ostream& os) const
    +
    640  {
    +
    641  os << red << ";" << green << ";" << blue;
    +
    642  return os;
    +
    643  }
    +
    644  };
    +
    645 
    +
    647  struct fg_16M : public color_16M {
    +
    649  fg_16M() : color_16M(ground::fore) {}
    +
    650 
    +
    659  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
    +
    660 
    +
    667  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
    +
    668 
    +
    672  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
    +
    673 
    +
    674  } fore_16M;
    +
    675 
    +
    677  struct bg_16M : public color_16M {
    +
    679  bg_16M() : color_16M(ground::back) {}
    +
    680 
    +
    689  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
    +
    690 
    +
    697  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
    +
    698 
    +
    702  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
    +
    703 
    +
    704  } back_16M;
    +
    705 
    +
    708  public:
    +
    710  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
    +
    711 
    +
    714  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    715  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    716  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    717  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    718  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    719  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    724  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
    +
    725  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
    +
    726  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
    +
    731  fmt(const short fr, const short fg, const short fb,
    +
    732  const short gr, const short gg, const short gb,
    +
    733  typo s = typo::none)
    +
    734  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
    +
    735  fmt(fg,
    +
    736  const short gr, const short gg, const short gb,
    +
    737  typo s = typo::none)
    +
    738  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
    739  fmt(const short fr, const short fg, const short fb,
    -
    740  typo s = typo::none)
    +
    740  bg, typo s = typo::none)
    741  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
    -
    742 
    -
    743  fmt(const std::string& f, const std::string& b, typo s = typo::none)
    -
    744  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
    -
    745  fmt(fg, const std::string& b, typo s = typo::none)
    -
    746  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
    -
    747  fmt(const std::string& f, bg, typo s = typo::none)
    -
    748  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    -
    749  fmt(const std::string& f, typo s = typo::none)
    -
    750  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    -
    753  protected:
    -
    754 
    -
    756  std::ostream& print_on( std::ostream& os) const
    -
    757  {
    -
    758  if(mode == ansi::colors_16) {
    -
    759  // Print all in a single escape.
    -
    760  os << std::make_tuple(fore,back,style);
    -
    761 
    -
    762  } else {
    -
    763  // 256 or 16M: always print separated escapes for foreground/background.
    -
    764  if(mode == ansi::colors_256) {
    -
    765  os << fore_256;
    -
    766  os << back_256;
    -
    767 
    -
    768  } else if(mode == ansi::colors_16M) {
    -
    769  os << fore_16M;
    -
    770  os << back_16M;
    -
    771  }
    -
    772  // In any case, print the style separately.
    -
    773  os << style;
    -
    774  }
    -
    775  return os;
    -
    776  }
    -
    777 
    -
    778  public:
    -
    790  friend std::ostream& operator<<(std::ostream& os, const fmt& fmt)
    -
    791  {
    -
    792  return fmt.print_on(os);
    -
    793  }
    -
    794 
    -
    805  std::string operator()( const std::string& msg ) const
    -
    806  {
    -
    807  std::ostringstream os;
    -
    808  this->print_on(os);
    -
    809  fmt reset(fmt::typo::reset);
    -
    810  os << msg;
    -
    811  reset.print_on(os);
    -
    812  return os.str();
    -
    813  }
    -
    814 
    -
    817  std::string str() const
    -
    818  {
    -
    819  std::ostringstream os;
    -
    820  this->print_on(os);
    -
    821  return os.str();
    -
    822  }
    -
    823 
    -
    824  static fmt hash( const std::string& str, const std::vector<fmt> domain = {})
    -
    825  {
    -
    826  size_t h = std::hash<std::string>{}(str);
    -
    827  if(domain.size() == 0) {
    -
    828  return fmt(static_cast<short>(h % 256));
    -
    829  } else {
    -
    830  return fmt(domain[h % domain.size()]);
    -
    831  }
    -
    832  }
    -
    833  }; // fmt class
    -
    834 
    -
    840  public:
    -
    841  clutchlog(clutchlog const&) = delete;
    -
    842  void operator=(clutchlog const&) = delete;
    -
    843 
    -
    844  private:
    -
    845  clutchlog() :
    -
    846  // system, main, log
    - -
    848  _level_word({
    -
    849  {level::critical,"Critical"},
    -
    850  {level::error ,"Error"},
    -
    851  {level::warning ,"Warning"},
    -
    852  {level::progress,"Progress"},
    -
    853  {level::note ,"Note"},
    -
    854  {level::info ,"Info"},
    -
    855  {level::debug ,"Debug"},
    -
    856  {level::xdebug ,"XDebug"}
    -
    857  }),
    -
    858  _level_short({
    -
    859  {level::critical, "Crit"},
    -
    860  {level::error , "Erro"},
    -
    861  {level::warning , "Warn"},
    -
    862  {level::progress, "Prog"},
    -
    863  {level::note , "Note"},
    -
    864  {level::info , "Info"},
    -
    865  {level::debug , "Dbug"},
    -
    866  {level::xdebug , "XDbg"}
    -
    867  }),
    -
    868  _level_fmt({
    -
    869  {level::critical,fmt(fmt::fg::red, fmt::typo::underline)},
    -
    870  {level::error ,fmt(fmt::fg::red, fmt::typo::bold)},
    -
    871  {level::warning ,fmt(fmt::fg::magenta, fmt::typo::bold)},
    -
    872  {level::progress,fmt()},
    -
    873  {level::note ,fmt()},
    -
    874  {level::info ,fmt()},
    -
    875  {level::debug ,fmt()},
    -
    876  {level::xdebug ,fmt()}
    -
    877  }),
    - - -
    880  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    -
    881  _hfill_char(clutchlog::default_hfill_char),
    -
    882  _hfill_fmt(fmt::fg::none),
    -
    883  _hfill_max(clutchlog::default_hfill_max),
    -
    884  _hfill_min(clutchlog::default_hfill_min),
    -
    885  #endif
    -
    886  _out(&std::clog),
    -
    887  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    888  _depth(std::numeric_limits<size_t>::max() - _strip_calls),
    -
    889  _depth_mark(clutchlog::default_depth_mark),
    -
    890  #endif
    -
    891  _stage(level::error),
    -
    892  _in_file(".*"),
    -
    893  _in_func(".*"),
    -
    894  _in_line(".*")
    -
    895  // Empty vectors by default:
    -
    896  // _filehash_fmts
    -
    897  // _funchash_fmts
    -
    898  // _depth_fmts
    -
    899  {
    -
    900  // Reverse the level->word map into a word->level map.
    -
    901  for(auto& lw : _level_word) {
    -
    902  _word_level[lw.second] = lw.first;
    -
    903  }
    -
    904 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    -
    905  struct winsize w;
    -
    906  ioctl(STDERR_FILENO, TIOCGWINSZ, &w);
    -
    907  _nb_columns = std::max(std::min((size_t)w.ws_col, default_hfill_max), default_hfill_min);
    -
    908 #endif
    -
    909  }
    -
    910 
    -
    911  protected:
    -
    913  size_t _strip_calls;
    -
    915  const std::map<level,std::string> _level_word;
    -
    917  std::map<std::string,level> _word_level;
    -
    919  std::map<level,std::string> _level_short;
    -
    921  std::map<level,fmt> _level_fmt;
    -
    923  std::string _format_log;
    -
    925  std::string _format_dump;
    -
    926  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    -
    927 
    -
    928  char _hfill_char;
    -
    930  fmt _hfill_fmt;
    -
    932  size_t _hfill_max;
    -
    934  size_t _hfill_min;
    -
    935  #endif
    -
    936 
    -
    937  std::ostream* _out;
    -
    938  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    939 
    -
    940  size_t _depth;
    -
    942  std::string _depth_mark;
    -
    943  #endif
    -
    944 
    - -
    947  std::regex _in_file;
    -
    949  std::regex _in_func;
    -
    951  std::regex _in_line;
    -
    952 
    -
    954  std::vector<fmt> _filehash_fmts;
    -
    956  std::vector<fmt> _funchash_fmts;
    -
    957 
    -
    958 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    959 
    -
    960  static const size_t _max_buffer = 4096;
    -
    962  std::vector<fmt> _depth_fmts;
    -
    963 #endif
    -
    964 
    -
    965 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    -
    966 
    -
    967  size_t _nb_columns;
    -
    968 #endif
    -
    969 
    -
    971  public:
    -
    972 
    -
    976  void format(const std::string& format) {_format_log = format;}
    -
    979  std::string format() const {return _format_log;}
    -
    980 
    -
    982  void format_comment(const std::string& format) {_format_dump = format;}
    -
    984  std::string format_comment() const {return _format_dump;}
    -
    985 
    -
    987  void out(std::ostream& out) {_out = &out;}
    -
    989  std::ostream& out() {return *_out;}
    -
    990 
    -
    991 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    992  void depth(size_t d) {_depth = d;}
    -
    995  size_t depth() const {return _depth;}
    -
    996 
    -
    998  void depth_mark(const std::string mark) {_depth_mark = mark;}
    -
    1000  std::string depth_mark() const {return _depth_mark;}
    -
    1001 
    -
    1003  void strip_calls(const size_t n) {_strip_calls = n;}
    -
    1005  size_t strip_calls() const {return _strip_calls;}
    -
    1006 #endif
    -
    1007 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
    -
    1008  void hfill_mark(const char mark) {_hfill_char = mark;}
    -
    1011  char hfill_mark() const {return _hfill_char;}
    -
    1013  void hfill_style(fmt style) {_hfill_fmt = style;}
    -
    1018  template<class ... FMT>
    -
    1019  void hfill_style(FMT... styles) { this->hfill_style(fmt(styles...)); }
    -
    1021  fmt hfill_style() const {return _hfill_fmt;}
    -
    1023  void hfill_max(const size_t nmax) {_hfill_max = nmax;}
    -
    1025  size_t hfill_max() {return _hfill_max;}
    -
    1027  void hfill_min(const size_t nmin) {_hfill_min = nmin;}
    -
    1029  size_t hfill_min() {return _hfill_min;}
    -
    1030 #endif
    -
    1031 
    -
    1038  void filehash_styles(std::vector<fmt> styles) {_filehash_fmts = styles;}
    -
    1046  void funchash_styles(std::vector<fmt> styles) {_funchash_fmts = styles;}
    -
    1055  void depth_styles(std::vector<fmt> styles) {_depth_fmts = styles;}
    -
    1056 
    -
    1058  void threshold(level l) {_stage = l;}
    -
    1060  void threshold(const std::string& l) {_stage = this->level_of(l);}
    -
    1062  level threshold() const {return _stage;}
    -
    1064  const std::map<std::string,level>& levels() const { return _word_level;}
    -
    1065 
    -
    1070  level level_of(const std::string name)
    -
    1071  {
    -
    1072  const auto ilevel = _word_level.find(name);
    -
    1073  if( ilevel != std::end(_word_level)) {
    -
    1074  return ilevel->second;
    -
    1075  } else {
    -
    1076  throw std::out_of_range("'" + name + "' is not a valid log level name");
    -
    1077  }
    -
    1078  }
    -
    1079 
    -
    1081  void file(std::string file) {_in_file = file;}
    -
    1083  void func(std::string func) {_in_func = func;}
    -
    1085  void line(std::string line) {_in_line = line;}
    +
    742  fmt(const short fr, const short fg, const short fb,
    +
    743  typo s = typo::none)
    +
    744  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
    +
    745 
    +
    746  fmt(const std::string& f, const std::string& b, typo s = typo::none)
    +
    747  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
    +
    748  fmt(fg, const std::string& b, typo s = typo::none)
    +
    749  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
    +
    750  fmt(const std::string& f, bg, typo s = typo::none)
    +
    751  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    +
    752  fmt(const std::string& f, typo s = typo::none)
    +
    753  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    +
    756  protected:
    +
    757 
    +
    759  std::ostream& print_on( std::ostream& os) const
    +
    760  {
    +
    761  if(mode == ansi::colors_16) {
    +
    762  // Print all in a single escape.
    +
    763  os << std::make_tuple(fore,back,style);
    +
    764 
    +
    765  } else {
    +
    766  // 256 or 16M: always print separated escapes for foreground/background.
    +
    767  if(mode == ansi::colors_256) {
    +
    768  os << fore_256;
    +
    769  os << back_256;
    +
    770 
    +
    771  } else if(mode == ansi::colors_16M) {
    +
    772  os << fore_16M;
    +
    773  os << back_16M;
    +
    774  }
    +
    775  // In any case, print the style separately.
    +
    776  os << style;
    +
    777  }
    +
    778  return os;
    +
    779  }
    +
    780 
    +
    781  public:
    +
    793  friend std::ostream& operator<<(std::ostream& os, const fmt& fmt)
    +
    794  {
    +
    795  return fmt.print_on(os);
    +
    796  }
    +
    797 
    +
    808  std::string operator()( const std::string& msg ) const
    +
    809  {
    +
    810  std::ostringstream os;
    +
    811  this->print_on(os);
    +
    812  fmt reset(fmt::typo::reset);
    +
    813  os << msg;
    +
    814  reset.print_on(os);
    +
    815  return os.str();
    +
    816  }
    +
    817 
    +
    820  std::string str() const
    +
    821  {
    +
    822  std::ostringstream os;
    +
    823  this->print_on(os);
    +
    824  return os.str();
    +
    825  }
    +
    826 
    +
    827  static fmt hash( const std::string& str, const std::vector<fmt> domain = {})
    +
    828  {
    +
    829  size_t h = std::hash<std::string>{}(str);
    +
    830  if(domain.size() == 0) {
    +
    831  return fmt(static_cast<short>(h % 256));
    +
    832  } else {
    +
    833  return fmt(domain[h % domain.size()]);
    +
    834  }
    +
    835  }
    +
    836  }; // fmt class
    +
    837 
    +
    843  public:
    +
    844  clutchlog(clutchlog const&) = delete;
    +
    845  void operator=(clutchlog const&) = delete;
    +
    846 
    +
    847  private:
    +
    848  clutchlog() :
    +
    849  // system, main, log
    + +
    851  _level_word({
    +
    852  {level::critical,"Critical"},
    +
    853  {level::error ,"Error"},
    +
    854  {level::warning ,"Warning"},
    +
    855  {level::progress,"Progress"},
    +
    856  {level::note ,"Note"},
    +
    857  {level::info ,"Info"},
    +
    858  {level::debug ,"Debug"},
    +
    859  {level::xdebug ,"XDebug"}
    +
    860  }),
    +
    861  _level_short({
    +
    862  {level::critical, "Crit"},
    +
    863  {level::error , "Erro"},
    +
    864  {level::warning , "Warn"},
    +
    865  {level::progress, "Prog"},
    +
    866  {level::note , "Note"},
    +
    867  {level::info , "Info"},
    +
    868  {level::debug , "Dbug"},
    +
    869  {level::xdebug , "XDbg"}
    +
    870  }),
    +
    871  _level_fmt({
    +
    872  {level::critical,fmt(fmt::fg::red, fmt::typo::underline)},
    +
    873  {level::error ,fmt(fmt::fg::red, fmt::typo::bold)},
    +
    874  {level::warning ,fmt(fmt::fg::magenta, fmt::typo::bold)},
    +
    875  {level::progress,fmt()},
    +
    876  {level::note ,fmt()},
    +
    877  {level::info ,fmt()},
    +
    878  {level::debug ,fmt()},
    +
    879  {level::xdebug ,fmt()}
    +
    880  }),
    + + +
    883  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    +
    884  _hfill_char(clutchlog::default_hfill_char),
    +
    885  _hfill_fmt(fmt::fg::none),
    +
    886  _hfill_max(clutchlog::default_hfill_max),
    +
    887  _hfill_min(clutchlog::default_hfill_min),
    +
    888  #endif
    +
    889  _out(&std::clog),
    +
    890  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    891  _depth(std::numeric_limits<size_t>::max() - _strip_calls),
    +
    892  _depth_mark(clutchlog::default_depth_mark),
    +
    893  #endif
    +
    894  _stage(level::error),
    +
    895  _in_file(".*"),
    +
    896  _in_func(".*"),
    +
    897  _in_line(".*"),
    +
    898  // Empty vectors by default:
    +
    899  // _filehash_fmts
    +
    900  // _funchash_fmts
    +
    901  // _depth_fmts
    +
    902  _filename(filename::path)
    +
    903  {
    +
    904  // Reverse the level->word map into a word->level map.
    +
    905  for(auto& lw : _level_word) {
    +
    906  _word_level[lw.second] = lw.first;
    +
    907  }
    +
    908 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    +
    909  struct winsize w;
    +
    910  ioctl(STDERR_FILENO, TIOCGWINSZ, &w);
    +
    911  _nb_columns = std::max(std::min((size_t)w.ws_col, default_hfill_max), default_hfill_min);
    +
    912 #endif
    +
    913  }
    +
    914 
    +
    915  protected:
    +
    917  size_t _strip_calls;
    +
    919  const std::map<level,std::string> _level_word;
    +
    921  std::map<std::string,level> _word_level;
    +
    923  std::map<level,std::string> _level_short;
    +
    925  std::map<level,fmt> _level_fmt;
    +
    927  std::string _format_log;
    +
    929  std::string _format_dump;
    +
    930  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    +
    931 
    +
    932  char _hfill_char;
    +
    934  fmt _hfill_fmt;
    +
    936  size_t _hfill_max;
    +
    938  size_t _hfill_min;
    +
    939  #endif
    +
    940 
    +
    941  std::ostream* _out;
    +
    942  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    943 
    +
    944  size_t _depth;
    +
    946  std::string _depth_mark;
    +
    947  #endif
    +
    948 
    + +
    951  std::regex _in_file;
    +
    953  std::regex _in_func;
    +
    955  std::regex _in_line;
    +
    956 
    +
    958  std::vector<fmt> _filehash_fmts;
    +
    960  std::vector<fmt> _funchash_fmts;
    +
    961 
    +
    962 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    963 
    +
    964  static const size_t _max_buffer = 4096;
    +
    966  std::vector<fmt> _depth_fmts;
    +
    967 #endif
    +
    968 
    +
    969 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    +
    970 
    +
    971  size_t _nb_columns;
    +
    972 #endif
    +
    973 
    + +
    978  public:
    +
    979 
    +
    983  void format(const std::string& format) {_format_log = format;}
    +
    986  std::string format() const {return _format_log;}
    +
    987 
    +
    989  void format_comment(const std::string& format) {_format_dump = format;}
    +
    991  std::string format_comment() const {return _format_dump;}
    +
    992 
    +
    994  void out(std::ostream& out) {_out = &out;}
    +
    996  std::ostream& out() {return *_out;}
    +
    997 
    +
    998 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    999  void depth(size_t d) {_depth = d;}
    +
    1002  size_t depth() const {return _depth;}
    +
    1003 
    +
    1005  void depth_mark(const std::string mark) {_depth_mark = mark;}
    +
    1007  std::string depth_mark() const {return _depth_mark;}
    +
    1008 
    +
    1010  void strip_calls(const size_t n) {_strip_calls = n;}
    +
    1012  size_t strip_calls() const {return _strip_calls;}
    +
    1013 #endif
    +
    1014 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
    +
    1015  void hfill_mark(const char mark) {_hfill_char = mark;}
    +
    1018  char hfill_mark() const {return _hfill_char;}
    +
    1020  void hfill_style(fmt style) {_hfill_fmt = style;}
    +
    1025  template<class ... FMT>
    +
    1026  void hfill_style(FMT... styles) { this->hfill_style(fmt(styles...)); }
    +
    1028  fmt hfill_style() const {return _hfill_fmt;}
    +
    1030  void hfill_max(const size_t nmax) {_hfill_max = nmax;}
    +
    1032  size_t hfill_max() {return _hfill_max;}
    +
    1034  void hfill_min(const size_t nmin) {_hfill_min = nmin;}
    +
    1036  size_t hfill_min() {return _hfill_min;}
    +
    1037 #endif
    +
    1038 
    +
    1045  void filehash_styles(std::vector<fmt> styles) {_filehash_fmts = styles;}
    +
    1053  void funchash_styles(std::vector<fmt> styles) {_funchash_fmts = styles;}
    +
    1062  void depth_styles(std::vector<fmt> styles) {_depth_fmts = styles;}
    +
    1063 
    +
    1065  void threshold(level l) {_stage = l;}
    +
    1067  void threshold(const std::string& l) {_stage = this->level_of(l);}
    +
    1069  level threshold() const {return _stage;}
    +
    1071  const std::map<std::string,level>& levels() const { return _word_level;}
    +
    1072 
    +
    1077  level level_of(const std::string name)
    +
    1078  {
    +
    1079  const auto ilevel = _word_level.find(name);
    +
    1080  if( ilevel != std::end(_word_level)) {
    +
    1081  return ilevel->second;
    +
    1082  } else {
    +
    1083  throw std::out_of_range("'" + name + "' is not a valid log level name");
    +
    1084  }
    +
    1085  }
    1086 
    -
    1088  void location(
    -
    1089  const std::string& in_file,
    -
    1090  const std::string& in_function=".*",
    -
    1091  const std::string& in_line=".*"
    -
    1092  )
    -
    1093  {
    -
    1094  file(in_file);
    -
    1095  func(in_function);
    -
    1096  line(in_line);
    -
    1097  }
    -
    1098 
    -
    1103  template<class ... FMT>
    -
    1104  void style(level stage, FMT... styles) { this->style(stage,fmt(styles...)); }
    -
    1106  void style(level stage, fmt style) { _level_fmt.at(stage) = style; }
    -
    1108  fmt style(level stage) const { return _level_fmt.at(stage); }
    -
    1109 
    -
    1112  public:
    -
    1113 
    -
    1117  struct scope_t {
    -
    1120  bool matches;
    - -
    1123 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    1124 
    -
    1125  size_t depth;
    -
    1126 #endif
    -
    1127 
    -
    1128  bool there;
    - -
    1131  matches(false),
    -
    1132  stage(level::xdebug),
    - -
    1134  depth(0),
    -
    1135 #endif
    -
    1136  there(false)
    -
    1137  {}
    -
    1138  }; // scope_t
    -
    1139 
    -
    1140 
    - -
    1143  const level& stage,
    -
    1144  const std::string& file,
    -
    1145  const std::string& func,
    -
    1146  const size_t line
    -
    1147  ) const
    -
    1148  {
    -
    1149  scope_t scope; // False scope by default.
    +
    1088  void file(std::string file) {_in_file = file;}
    +
    1090  void func(std::string func) {_in_func = func;}
    +
    1092  void line(std::string line) {_in_line = line;}
    +
    1093 
    +
    1095  void location(
    +
    1096  const std::string& in_file,
    +
    1097  const std::string& in_function=".*",
    +
    1098  const std::string& in_line=".*"
    +
    1099  )
    +
    1100  {
    +
    1101  file(in_file);
    +
    1102  func(in_function);
    +
    1103  line(in_line);
    +
    1104  }
    +
    1105 
    +
    1110  template<class ... FMT>
    +
    1111  void style(level stage, FMT... styles) { this->style(stage,fmt(styles...)); }
    +
    1113  void style(level stage, fmt style) { _level_fmt.at(stage) = style; }
    +
    1115  fmt style(level stage) const { return _level_fmt.at(stage); }
    +
    1116 
    +
    1118  void filename(filename f) {_filename = f;}
    +
    1119 
    +
    1122  public:
    +
    1123 
    +
    1127  struct scope_t {
    +
    1130  bool matches;
    + +
    1133 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    1134 
    +
    1135  size_t depth;
    +
    1136 #endif
    +
    1137 
    +
    1138  bool there;
    + +
    1141  matches(false),
    +
    1142  stage(level::xdebug),
    + +
    1144  depth(0),
    +
    1145 #endif
    +
    1146  there(false)
    +
    1147  {}
    +
    1148  }; // scope_t
    +
    1149 
    1150 
    -
    1151  /***** Log level stage *****/
    -
    1152  // Test stage first, because it's fastest.
    -
    1153  scope.stage = stage;
    -
    1154  if(not (scope.stage <= _stage)) {
    -
    1155  // Bypass useless computations if no match
    -
    1156  // because of the stage.
    -
    1157  return scope;
    -
    1158  }
    -
    1159 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    1160  /***** Stack depth *****/
    -
    1161  // Backtrace in second, quite fast.
    -
    1162  size_t stack_depth;
    -
    1163  void *buffer[_max_buffer];
    -
    1164  stack_depth = backtrace(buffer, _max_buffer);
    -
    1165  scope.depth = stack_depth;
    -
    1166  if(not (scope.depth <= _depth + _strip_calls)) {
    -
    1167  // Bypass if no match.
    -
    1168  return scope;
    -
    1169  }
    -
    1170 #endif
    -
    1171 
    -
    1172  /***** Location *****/
    -
    1173  // Location last, slowest.
    -
    1174  std::ostringstream sline; sline << line;
    -
    1175  scope.there =
    -
    1176  std::regex_search(file, _in_file)
    -
    1177  and std::regex_search(func, _in_func)
    -
    1178  and std::regex_search(sline.str(), _in_line);
    -
    1179 
    -
    1180  // No need to retest stage and depth, which are true here.
    -
    1181  scope.matches = scope.there;
    -
    1182 
    -
    1183  return scope;
    -
    1184  } // locate
    -
    1185 
    -
    1193  std::string replace(
    -
    1194  const std::string& form,
    -
    1195  const std::string& mark,
    -
    1196  const std::string& tag
    -
    1197  ) const
    -
    1198  {
    -
    1199  // Useless debug code, unless something fancy would be done with name tags.
    -
    1200  // std::regex re;
    -
    1201  // try {
    -
    1202  // re = std::regex(mark);
    -
    1203  //
    -
    1204  // } catch(const std::regex_error& e) {
    -
    1205  // std::cerr << "ERROR with a regular expression \"" << mark << "\": ";
    -
    1206  // switch(e.code()) {
    -
    1207  // case std::regex_constants::error_collate:
    -
    1208  // std::cerr << "the expression contains an invalid collating element name";
    -
    1209  // break;
    -
    1210  // case std::regex_constants::error_ctype:
    -
    1211  // std::cerr << "the expression contains an invalid character class name";
    -
    1212  // break;
    -
    1213  // case std::regex_constants::error_escape:
    -
    1214  // std::cerr << "the expression contains an invalid escaped character or a trailing escape";
    -
    1215  // break;
    -
    1216  // case std::regex_constants::error_backref:
    -
    1217  // std::cerr << "the expression contains an invalid back reference";
    -
    1218  // break;
    -
    1219  // case std::regex_constants::error_brack:
    -
    1220  // std::cerr << "the expression contains mismatched square brackets ('[' and ']')";
    -
    1221  // break;
    -
    1222  // case std::regex_constants::error_paren:
    -
    1223  // std::cerr << "the expression contains mismatched parentheses ('(' and ')')";
    -
    1224  // break;
    -
    1225  // case std::regex_constants::error_brace:
    -
    1226  // std::cerr << "the expression contains mismatched curly braces ('{' and '}')";
    -
    1227  // break;
    -
    1228  // case std::regex_constants::error_badbrace:
    -
    1229  // std::cerr << "the expression contains an invalid range in a {} expression";
    -
    1230  // break;
    -
    1231  // case std::regex_constants::error_range:
    -
    1232  // std::cerr << "the expression contains an invalid character range (e.g. [b-a])";
    -
    1233  // break;
    -
    1234  // case std::regex_constants::error_space:
    -
    1235  // std::cerr << "there was not enough memory to convert the expression into a finite state machine";
    -
    1236  // break;
    -
    1237  // case std::regex_constants::error_badrepeat:
    -
    1238  // std::cerr << "one of *?+{ was not preceded by a valid regular expression";
    -
    1239  // break;
    -
    1240  // case std::regex_constants::error_complexity:
    -
    1241  // std::cerr << "the complexity of an attempted match exceeded a predefined level";
    -
    1242  // break;
    -
    1243  // case std::regex_constants::error_stack:
    -
    1244  // std::cerr << "there was not enough memory to perform a match";
    -
    1245  // break;
    -
    1246  // default:
    -
    1247  // std::cerr << "unknown error";
    -
    1248  // }
    -
    1249  // std::cerr << std::endl;
    -
    1250  // throw;
    -
    1251  // } // catch
    -
    1252 
    -
    1253  const std::regex re(mark);
    -
    1254  return std::regex_replace(form, re, tag);
    -
    1255  }
    -
    1256 
    -
    1258  std::string replace(
    -
    1259  const std::string& form,
    -
    1260  const std::string& mark,
    -
    1261  const size_t tag
    -
    1262  ) const
    -
    1263  {
    -
    1264  std::ostringstream stag; stag << tag;
    -
    1265  return replace(form, mark, stag.str());
    -
    1266  }
    -
    1267 
    -
    1269  std::string format(
    -
    1270  std::string row,
    -
    1271  const std::string& what,
    - -
    1273  const std::string& name,
    -
    1274 #endif
    -
    1275  const level& stage,
    -
    1276  const std::string& file,
    -
    1277  const std::string& func,
    -
    1278  const size_t line
    - -
    1280  ,
    -
    1281  const size_t depth
    -
    1282 #endif
    -
    1283  ) const
    -
    1284  {
    -
    1285  row = replace(row, "\\{msg\\}", what);
    -
    1286  row = replace(row, "\\{file\\}", file);
    -
    1287  row = replace(row, "\\{func\\}", func);
    -
    1288  row = replace(row, "\\{line\\}", line);
    -
    1289 
    -
    1290  row = replace(row, "\\{level\\}", _level_word.at(stage));
    -
    1291  std::string letter(1, _level_word.at(stage).at(0)); // char -> string
    -
    1292  row = replace(row, "\\{level_letter\\}", letter);
    -
    1293 
    -
    1294  row = replace(row, "\\{level_short\\}", _level_short.at(stage));
    -
    1295 
    -
    1296 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    1297  size_t actual_depth = depth - _strip_calls;
    -
    1298  row = replace(row, "\\{name\\}", name);
    -
    1299  row = replace(row, "\\{depth\\}", actual_depth);
    -
    1300 
    -
    1301  if(_depth_fmts.size() == 0) {
    -
    1302  row = replace(row, "\\{depth_fmt\\}", fmt(actual_depth % 256).str() );
    -
    1303 
    -
    1304  std::ostringstream chevrons;
    -
    1305  for(size_t i = 0; i < actual_depth; ++i) {
    -
    1306  chevrons << _depth_mark;
    -
    1307  }
    -
    1308  row = replace(row, "\\{depth_marks\\}", chevrons.str());
    -
    1309 
    -
    1310  } else {
    -
    1311  row = replace(row, "\\{depth_fmt\\}",
    -
    1312  _depth_fmts[std::min(actual_depth,_depth_fmts.size()-1)].str() );
    -
    1313 
    -
    1314  std::ostringstream chevrons;
    -
    1315  for(size_t i = 0; i < actual_depth; ++i) {
    -
    1316  chevrons << _depth_fmts[std::min(i+1,_depth_fmts.size()-1)].str()
    -
    1317  << _depth_mark;
    -
    1318  }
    -
    1319  row = replace(row, "\\{depth_marks\\}", chevrons.str());
    -
    1320  }
    -
    1321 #endif
    -
    1322  row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str());
    -
    1323  row = replace(row, "\\{filehash_fmt\\}", fmt::hash(file, _filehash_fmts).str() );
    -
    1324  row = replace(row, "\\{funchash_fmt\\}", fmt::hash(func, _funchash_fmts).str() );
    + +
    1153  const level& stage,
    +
    1154  const std::string& file,
    +
    1155  const std::string& func,
    +
    1156  const size_t line
    +
    1157  ) const
    +
    1158  {
    +
    1159  scope_t scope; // False scope by default.
    +
    1160 
    +
    1161  /***** Log level stage *****/
    +
    1162  // Test stage first, because it's fastest.
    +
    1163  scope.stage = stage;
    +
    1164  if(not (scope.stage <= _stage)) {
    +
    1165  // Bypass useless computations if no match
    +
    1166  // because of the stage.
    +
    1167  return scope;
    +
    1168  }
    +
    1169 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    1170  /***** Stack depth *****/
    +
    1171  // Backtrace in second, quite fast.
    +
    1172  size_t stack_depth;
    +
    1173  void *buffer[_max_buffer];
    +
    1174  stack_depth = backtrace(buffer, _max_buffer);
    +
    1175  scope.depth = stack_depth;
    +
    1176  if(not (scope.depth <= _depth + _strip_calls)) {
    +
    1177  // Bypass if no match.
    +
    1178  return scope;
    +
    1179  }
    +
    1180 #endif
    +
    1181 
    +
    1182  /***** Location *****/
    +
    1183  // Location last, slowest.
    +
    1184  std::ostringstream sline; sline << line;
    +
    1185  scope.there =
    +
    1186  std::regex_search(file, _in_file)
    +
    1187  and std::regex_search(func, _in_func)
    +
    1188  and std::regex_search(sline.str(), _in_line);
    +
    1189 
    +
    1190  // No need to retest stage and depth, which are true here.
    +
    1191  scope.matches = scope.there;
    +
    1192 
    +
    1193  return scope;
    +
    1194  } // locate
    +
    1195 
    +
    1203  std::string replace(
    +
    1204  const std::string& form,
    +
    1205  const std::string& mark,
    +
    1206  const std::string& tag
    +
    1207  ) const
    +
    1208  {
    +
    1209  // Useless debug code, unless something fancy would be done with name tags.
    +
    1210  // std::regex re;
    +
    1211  // try {
    +
    1212  // re = std::regex(mark);
    +
    1213  //
    +
    1214  // } catch(const std::regex_error& e) {
    +
    1215  // std::cerr << "ERROR with a regular expression \"" << mark << "\": ";
    +
    1216  // switch(e.code()) {
    +
    1217  // case std::regex_constants::error_collate:
    +
    1218  // std::cerr << "the expression contains an invalid collating element name";
    +
    1219  // break;
    +
    1220  // case std::regex_constants::error_ctype:
    +
    1221  // std::cerr << "the expression contains an invalid character class name";
    +
    1222  // break;
    +
    1223  // case std::regex_constants::error_escape:
    +
    1224  // std::cerr << "the expression contains an invalid escaped character or a trailing escape";
    +
    1225  // break;
    +
    1226  // case std::regex_constants::error_backref:
    +
    1227  // std::cerr << "the expression contains an invalid back reference";
    +
    1228  // break;
    +
    1229  // case std::regex_constants::error_brack:
    +
    1230  // std::cerr << "the expression contains mismatched square brackets ('[' and ']')";
    +
    1231  // break;
    +
    1232  // case std::regex_constants::error_paren:
    +
    1233  // std::cerr << "the expression contains mismatched parentheses ('(' and ')')";
    +
    1234  // break;
    +
    1235  // case std::regex_constants::error_brace:
    +
    1236  // std::cerr << "the expression contains mismatched curly braces ('{' and '}')";
    +
    1237  // break;
    +
    1238  // case std::regex_constants::error_badbrace:
    +
    1239  // std::cerr << "the expression contains an invalid range in a {} expression";
    +
    1240  // break;
    +
    1241  // case std::regex_constants::error_range:
    +
    1242  // std::cerr << "the expression contains an invalid character range (e.g. [b-a])";
    +
    1243  // break;
    +
    1244  // case std::regex_constants::error_space:
    +
    1245  // std::cerr << "there was not enough memory to convert the expression into a finite state machine";
    +
    1246  // break;
    +
    1247  // case std::regex_constants::error_badrepeat:
    +
    1248  // std::cerr << "one of *?+{ was not preceded by a valid regular expression";
    +
    1249  // break;
    +
    1250  // case std::regex_constants::error_complexity:
    +
    1251  // std::cerr << "the complexity of an attempted match exceeded a predefined level";
    +
    1252  // break;
    +
    1253  // case std::regex_constants::error_stack:
    +
    1254  // std::cerr << "there was not enough memory to perform a match";
    +
    1255  // break;
    +
    1256  // default:
    +
    1257  // std::cerr << "unknown error";
    +
    1258  // }
    +
    1259  // std::cerr << std::endl;
    +
    1260  // throw;
    +
    1261  // } // catch
    +
    1262 
    +
    1263  const std::regex re(mark);
    +
    1264  return std::regex_replace(form, re, tag);
    +
    1265  }
    +
    1266 
    +
    1268  std::string replace(
    +
    1269  const std::string& form,
    +
    1270  const std::string& mark,
    +
    1271  const size_t tag
    +
    1272  ) const
    +
    1273  {
    +
    1274  std::ostringstream stag; stag << tag;
    +
    1275  return replace(form, mark, stag.str());
    +
    1276  }
    +
    1277 
    +
    1279  std::string format(
    +
    1280  std::string row,
    +
    1281  const std::string& what,
    + +
    1283  const std::string& name,
    +
    1284 #endif
    +
    1285  const level& stage,
    +
    1286  const std::string& file,
    +
    1287  const std::string& func,
    +
    1288  const size_t line
    + +
    1290  ,
    +
    1291  const size_t depth
    +
    1292 #endif
    +
    1293  ) const
    +
    1294  {
    +
    1295  row = replace(row, "\\{msg\\}", what);
    +
    1296 
    +
    1297  const std::filesystem::path filepath(file);
    +
    1298  assert(filepath.is_absolute());
    +
    1299  std::string filename;
    +
    1300  std::filesystem::path::iterator ip = filepath.end();
    +
    1301  std::advance(ip, -2);
    +
    1302  switch(_filename) {
    +
    1303  case filename::base:
    +
    1304  filename = filepath.filename().string();
    +
    1305  break;
    +
    1306  case filename::dir:
    +
    1307  filename = ip->string();
    +
    1308  break;
    +
    1309  case filename::dirbase:
    +
    1310  filename = (*ip / filepath.filename()).string();
    +
    1311  break;
    +
    1312  case filename::stem:
    +
    1313  filename = filepath.stem().string();
    +
    1314  break;
    +
    1315  case filename::dirstem:
    +
    1316  filename = (*ip / filepath.stem()).string();
    +
    1317  break;
    +
    1318  case filename::path:
    +
    1319  default:
    +
    1320  filename = file;
    +
    1321  break;
    +
    1322  }
    +
    1323  row = replace(row, "\\{file\\}", filename);
    +
    1324 
    1325 
    -
    1326 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    -
    1327  // hfill is replaced last to allow for correct line width estimation.
    -
    1328  const std::string raw_row = replace(row, "\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]", "");
    -
    1329  const std::string hfill_tag = "{hfill}";
    -
    1330  const size_t hfill_pos = row.find(hfill_tag);
    -
    1331  const size_t raw_hfill_pos = raw_row.find(hfill_tag);
    -
    1332  const size_t nb_columns = std::max(std::min((size_t)_nb_columns, _hfill_max), _hfill_min);
    -
    1333  if(hfill_pos != std::string::npos) {
    -
    1334  assert(raw_hfill_pos != std::string::npos);
    -
    1335  if(nb_columns > 0) {
    -
    1336  const size_t left_len = raw_hfill_pos;
    -
    1337  const size_t right_len = raw_row.size() - raw_hfill_pos - hfill_tag.size();
    -
    1338  if(right_len+left_len > nb_columns) {
    -
    1339  // The right part would go over the terminal width: add a new row.
    -
    1340  if(right_len < nb_columns) {
    -
    1341  // There is room for the right part on a new line.
    -
    1342  const std::string hfill(std::max((size_t)0, nb_columns-right_len), _hfill_char);
    -
    1343  const std::string hfill_styled = _hfill_fmt(hfill);
    -
    1344  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
    -
    1345  } else {
    -
    1346  // Right part still goes over columns: let it go.
    -
    1347  const std::string hfill(1, _hfill_char);
    -
    1348  const std::string hfill_styled = _hfill_fmt(hfill);
    -
    1349  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
    -
    1350  }
    -
    1351  } else {
    -
    1352  // There is some space in between left and right parts.
    -
    1353  const std::string hfill(std::max((size_t)0, nb_columns - (right_len+left_len)), _hfill_char);
    -
    1354  const std::string hfill_styled = _hfill_fmt(hfill);
    -
    1355  row = replace(row, "\\{hfill\\}", hfill_styled);
    -
    1356  }
    -
    1357  } else {
    -
    1358  // We don't know the terminal width.
    -
    1359  const std::string hfill(1, _hfill_char);
    -
    1360  const std::string hfill_styled = _hfill_fmt(hfill);
    -
    1361  row = replace(row, "\\{hfill\\}", hfill_styled);
    -
    1362  }
    -
    1363  }
    -
    1364 #else
    -
    1365  // We cannot know the terminal width.
    -
    1366  const std::string hfill(1, _hfill_char);
    -
    1367  const std::string hfill_styled = _hfill_fmt(hfill);
    -
    1368  row = replace(row, "\\{hfill\\}", hfill_styled);
    -
    1369 #endif
    -
    1370  return _level_fmt.at(stage)(row);
    -
    1371  }
    -
    1372 
    -
    1374  void log(
    -
    1375  const level& stage,
    -
    1376  const std::string& what,
    -
    1377  const std::string& file, const std::string& func, const size_t line,
    -
    1378  const size_t depth_delta = 0
    -
    1379  ) const
    -
    1380  {
    -
    1381  scope_t scope = locate(stage, file, func, line);
    -
    1382 
    -
    1383  if(scope.matches) {
    -
    1384 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    1385  *_out << format(_format_log, what, basename(getenv("_")),
    -
    1386  stage, file, func,
    -
    1387  line, scope.depth + depth_delta );
    -
    1388 #else
    -
    1389  *_out << format(_format_log, what,
    -
    1390  stage, file, func,
    -
    1391  line );
    -
    1392 #endif
    -
    1393  _out->flush();
    -
    1394  } // if scopes.matches
    -
    1395  }
    -
    1396 
    -
    1398  template<class In>
    -
    1399  void dump(
    -
    1400  const level& stage,
    -
    1401  const In container_begin, const In container_end,
    -
    1402  const std::string& file, const std::string& func, const size_t line,
    -
    1403  const std::string& filename_template = "dump_{n}.dat",
    -
    1404  const std::string sep = dump_default_sep
    -
    1405  ) const
    -
    1406  {
    -
    1407  scope_t scope = locate(stage, file, func, line);
    -
    1408 
    -
    1409  if(scope.matches) {
    -
    1410  const std::string tag = "\\{n\\}";
    -
    1411  const std::regex re(tag);
    -
    1412  std::string outfile = "";
    -
    1413 
    -
    1414  // If the file name template has the {n} tag.
    -
    1415  if(std::regex_search(filename_template, re)) {
    -
    1416  // Increment n until a free one is found.
    -
    1417  size_t n = 0;
    -
    1418  do {
    -
    1419  outfile = replace(filename_template, tag, n);
    -
    1420  n++;
    -
    1421  } while( fs::exists( outfile ) );
    -
    1422 
    -
    1423  } else {
    -
    1424  // Use the parameter as is.
    -
    1425  outfile = filename_template;
    -
    1426  }
    -
    1427 
    -
    1428  std::ofstream fd(outfile);
    -
    1429 
    -
    1430  if(_format_dump.size() > 0) {
    -
    1431 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    1432  fd << format(_format_dump, "", basename(getenv("_")),
    -
    1433  stage, file, func,
    -
    1434  line, scope.depth );
    -
    1435 #else
    -
    1436  fd << format(_format_dump, "",
    -
    1437  stage, file, func,
    -
    1438  line );
    -
    1439 #endif
    -
    1440  fd << sep; // sep after comment line.
    -
    1441  }
    -
    1442 
    -
    1443  std::copy(container_begin, container_end,
    -
    1444  std::ostream_iterator<typename In::value_type>(fd, sep.c_str()));
    -
    1445 
    -
    1446  fd.close();
    -
    1447  } // if scopes.matches
    -
    1448  }
    -
    1449 
    -
    1451 };
    -
    1452 
    -
    1455 #else // not WITH_CLUTCHLOG
    -
    1456 
    -
    1457 
    -
    1458 /**********************************************************************
    -
    1459  * Fake implementation
    -
    1460  **********************************************************************/
    -
    1461 
    -
    1462 // Equivalent class with empty methods, will be optimized out
    -
    1463 // while allowing to actually have calls implemented without WITH_CLUTCHLOG guards.
    -
    1464 #pragma GCC diagnostic push
    -
    1465 #pragma GCC diagnostic ignored "-Wreturn-type"
    -
    1466 class clutchlog
    -
    1467 {
    -
    1468  public:
    -
    1469  static clutchlog& logger() {}
    -
    1470  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
    -
    1471  class fmt {
    -
    1472  public:
    -
    1473  enum class ansi { colors_16, colors_256, colors_16M} mode;
    -
    1474  enum class typo { reset, bold, underline, inverse, none} style;
    -
    1475  enum class fg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none} fore;
    -
    1476  enum class bg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none } back;
    -
    1477  protected:
    -
    1478  friend std::ostream& operator<<(std::ostream&, const std::tuple<fg,bg,typo>&) {}
    -
    1479  friend std::ostream& operator<<(std::ostream&, const typo&) {}
    -
    1480  protected:
    -
    1481  struct color {
    -
    1482  ansi mode;
    -
    1483  enum class ground { fore, back } type;
    -
    1484  color(ansi a, ground g) : mode(a), type(g) {}
    -
    1485  virtual bool is_set() const = 0;
    -
    1486  virtual std::ostream& print_on( std::ostream&) const = 0;
    -
    1487  friend std::ostream& operator<<(std::ostream&, const color&) {}
    -
    1488  };
    -
    1489  struct color_256 : public color {
    -
    1490  short index;
    -
    1491  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
    -
    1492  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {}
    -
    1493  bool is_set() const {}
    -
    1494  std::ostream& print_on( std::ostream&) const {}
    -
    1495  };
    -
    1496  struct fg_256 : public color_256 {
    -
    1497  fg_256() : color_256(ground::fore) {}
    -
    1498  fg_256(const short f) : color_256(ground::fore, f) {}
    -
    1499  fg_256(const fg&) : color_256(ground::fore, -1) {}
    -
    1500  } fore_256;
    -
    1501  struct bg_256 : public color_256 {
    -
    1502  bg_256() : color_256(ground::back) {}
    -
    1503  bg_256(const short b) : color_256(ground::back, b) {}
    -
    1504  bg_256(const bg&) : color_256(ground::back, -1) {}
    -
    1505  } back_256;
    -
    1506  struct color_16M : public color {
    -
    1507  short red, green, blue;
    -
    1508  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
    -
    1509  color_16M(ground t, short r, short g, short b) : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
    -
    1510  color_16M(ground t, const std::string&) : color(ansi::colors_16M, t) {}
    -
    1511  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
    -
    1512  std::ostream& print_on( std::ostream&) const {}
    -
    1513  };
    -
    1514  struct fg_16M : public color_16M {
    -
    1515  fg_16M() : color_16M(ground::fore) {}
    -
    1516  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
    -
    1517  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
    -
    1518  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
    -
    1519  } fore_16M;
    -
    1520  struct bg_16M : public color_16M {
    -
    1521  bg_16M() : color_16M(ground::back) {}
    -
    1522  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
    -
    1523  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
    -
    1524  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
    -
    1525  } back_16M;
    -
    1526  public:
    -
    1527  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
    -
    1528  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    1529  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    1530  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    1531  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    1532  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    1533  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    -
    1534  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
    -
    1535  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
    -
    1536  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
    -
    1537  fmt(const short fr, const short fg, const short fb,
    -
    1538  const short gr, const short gg, const short gb,
    -
    1539  typo s = typo::none)
    -
    1540  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
    -
    1541  fmt(fg,
    -
    1542  const short gr, const short gg, const short gb,
    -
    1543  typo s = typo::none)
    -
    1544  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
    -
    1545  fmt(const short fr, const short fg, const short fb,
    -
    1546  bg, typo s = typo::none)
    -
    1547  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
    -
    1548  fmt(const short fr, const short fg, const short fb,
    -
    1549  typo s = typo::none)
    -
    1550  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
    -
    1551 
    -
    1552  fmt(const std::string& f, const std::string& b, typo s = typo::none)
    -
    1553  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
    -
    1554  fmt(fg, const std::string& b, typo s = typo::none)
    -
    1555  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
    -
    1556  fmt(const std::string& f, bg, typo s = typo::none)
    -
    1557  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    -
    1558  fmt(const std::string& f, typo s = typo::none)
    -
    1559  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    -
    1560  protected:
    -
    1561  std::ostream& print_on( std::ostream&) const {}
    -
    1562  public:
    -
    1563  friend std::ostream& operator<<(std::ostream&, const fmt&) {}
    -
    1564  std::string operator()( const std::string&) const {}
    -
    1565  std::string str() const {}
    -
    1566  static fmt hash( const std::string&, const std::vector<fmt>) {}
    -
    1567  };
    -
    1568  public:
    -
    1569  clutchlog(clutchlog const&) = delete;
    -
    1570  void operator=(clutchlog const&) = delete;
    -
    1571  private:
    -
    1572  clutchlog() {}
    -
    1573  protected:
    -
    1574  struct scope_t {};
    -
    1575  scope_t locate(
    -
    1576  const level&,
    -
    1577  const std::string&,
    -
    1578  const std::string&,
    -
    1579  const size_t
    -
    1580  ) const
    -
    1581  {}
    -
    1582  public:
    -
    1583  void format(const std::string&) {}
    -
    1584  std::string format() const {}
    -
    1585 
    -
    1586  void format_comment(const std::string&) {}
    -
    1587  std::string format_comment() const {}
    -
    1588 
    -
    1589  void out(std::ostream&) {}
    -
    1590  std::ostream& out() {}
    -
    1591 
    -
    1592 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    1593  void depth(size_t) {}
    -
    1594  size_t depth() const {}
    -
    1595 
    -
    1596  void depth_mark(const std::string) {}
    -
    1597  std::string depth_mark() const {}
    -
    1598  void strip_calls(const size_t) {}
    -
    1599  size_t strip_calls() const {}
    -
    1600 #endif
    -
    1601 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
    -
    1602  void hfill_mark(const char) {}
    -
    1603  char hfill_mark() const {}
    -
    1604  void hfill_fmt(fmt) {}
    -
    1605  fmt hfill_fmt() const {}
    -
    1606  void hfill_min(const size_t) {}
    -
    1607  size_t hfill_min() {}
    -
    1608  void hfill_max(const size_t) {}
    -
    1609  size_t hfill_max() {}
    -
    1610 #endif
    -
    1611  void filehash_styles(std::vector<fmt> ) {}
    -
    1612  void funchash_styles(std::vector<fmt> ) {}
    -
    1613  void depth_styles(std::vector<fmt>) {}
    -
    1614 
    -
    1615  void threshold(level) {}
    -
    1616  void threshold(const std::string&) {}
    -
    1617  level threshold() const {}
    -
    1618  const std::map<std::string,level> levels() const {}
    -
    1619  level level_of(const std::string) {}
    -
    1620 
    -
    1621  void file(std::string) {}
    -
    1622  void func(std::string) {}
    -
    1623  void line(std::string) {}
    +
    1326  row = replace(row, "\\{func\\}", func);
    +
    1327  row = replace(row, "\\{line\\}", line);
    +
    1328 
    +
    1329  row = replace(row, "\\{level\\}", _level_word.at(stage));
    +
    1330  std::string letter(1, _level_word.at(stage).at(0)); // char -> string
    +
    1331  row = replace(row, "\\{level_letter\\}", letter);
    +
    1332  row = replace(row, "\\{level_short\\}", _level_short.at(stage));
    +
    1333 
    +
    1334 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    1335  size_t actual_depth = depth - _strip_calls;
    +
    1336  row = replace(row, "\\{name\\}", name);
    +
    1337  row = replace(row, "\\{depth\\}", actual_depth);
    +
    1338 
    +
    1339  if(_depth_fmts.size() == 0) {
    +
    1340  row = replace(row, "\\{depth_fmt\\}", fmt(actual_depth % 256).str() );
    +
    1341 
    +
    1342  std::ostringstream chevrons;
    +
    1343  for(size_t i = 0; i < actual_depth; ++i) {
    +
    1344  chevrons << _depth_mark;
    +
    1345  }
    +
    1346  row = replace(row, "\\{depth_marks\\}", chevrons.str());
    +
    1347 
    +
    1348  } else {
    +
    1349  row = replace(row, "\\{depth_fmt\\}",
    +
    1350  _depth_fmts[std::min(actual_depth,_depth_fmts.size()-1)].str() );
    +
    1351 
    +
    1352  std::ostringstream chevrons;
    +
    1353  for(size_t i = 0; i < actual_depth; ++i) {
    +
    1354  chevrons << _depth_fmts[std::min(i+1,_depth_fmts.size()-1)].str()
    +
    1355  << _depth_mark;
    +
    1356  }
    +
    1357  row = replace(row, "\\{depth_marks\\}", chevrons.str());
    +
    1358  }
    +
    1359 #endif
    +
    1360  row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str());
    +
    1361  row = replace(row, "\\{filehash_fmt\\}", fmt::hash(file, _filehash_fmts).str() );
    +
    1362  row = replace(row, "\\{funchash_fmt\\}", fmt::hash(func, _funchash_fmts).str() );
    +
    1363 
    +
    1364 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
    +
    1365  // hfill is replaced last to allow for correct line width estimation.
    +
    1366  const std::string raw_row = replace(row, "\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]", "");
    +
    1367  const std::string hfill_tag = "{hfill}";
    +
    1368  const size_t hfill_pos = row.find(hfill_tag);
    +
    1369  const size_t raw_hfill_pos = raw_row.find(hfill_tag);
    +
    1370  const size_t nb_columns = std::max(std::min((size_t)_nb_columns, _hfill_max), _hfill_min);
    +
    1371  if(hfill_pos != std::string::npos) {
    +
    1372  assert(raw_hfill_pos != std::string::npos);
    +
    1373  if(nb_columns > 0) {
    +
    1374  const size_t left_len = raw_hfill_pos;
    +
    1375  const size_t right_len = raw_row.size() - raw_hfill_pos - hfill_tag.size();
    +
    1376  if(right_len+left_len > nb_columns) {
    +
    1377  // The right part would go over the terminal width: add a new row.
    +
    1378  if(right_len < nb_columns) {
    +
    1379  // There is room for the right part on a new line.
    +
    1380  const std::string hfill(std::max((size_t)0, nb_columns-right_len), _hfill_char);
    +
    1381  const std::string hfill_styled = _hfill_fmt(hfill);
    +
    1382  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
    +
    1383  } else {
    +
    1384  // Right part still goes over columns: let it go.
    +
    1385  const std::string hfill(1, _hfill_char);
    +
    1386  const std::string hfill_styled = _hfill_fmt(hfill);
    +
    1387  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
    +
    1388  }
    +
    1389  } else {
    +
    1390  // There is some space in between left and right parts.
    +
    1391  const std::string hfill(std::max((size_t)0, nb_columns - (right_len+left_len)), _hfill_char);
    +
    1392  const std::string hfill_styled = _hfill_fmt(hfill);
    +
    1393  row = replace(row, "\\{hfill\\}", hfill_styled);
    +
    1394  }
    +
    1395  } else {
    +
    1396  // We don't know the terminal width.
    +
    1397  const std::string hfill(1, _hfill_char);
    +
    1398  const std::string hfill_styled = _hfill_fmt(hfill);
    +
    1399  row = replace(row, "\\{hfill\\}", hfill_styled);
    +
    1400  }
    +
    1401  }
    +
    1402 #else
    +
    1403  // We cannot know the terminal width.
    +
    1404  const std::string hfill(1, _hfill_char);
    +
    1405  const std::string hfill_styled = _hfill_fmt(hfill);
    +
    1406  row = replace(row, "\\{hfill\\}", hfill_styled);
    +
    1407 #endif
    +
    1408  return _level_fmt.at(stage)(row);
    +
    1409  }
    +
    1410 
    +
    1412  void log(
    +
    1413  const level& stage,
    +
    1414  const std::string& what,
    +
    1415  const std::string& file, const std::string& func, const size_t line,
    +
    1416  const size_t depth_delta = 0
    +
    1417  ) const
    +
    1418  {
    +
    1419  scope_t scope = locate(stage, file, func, line);
    +
    1420 
    +
    1421  if(scope.matches) {
    +
    1422 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    1423  *_out << format(_format_log, what, basename(getenv("_")),
    +
    1424  stage, file, func,
    +
    1425  line, scope.depth + depth_delta );
    +
    1426 #else
    +
    1427  *_out << format(_format_log, what,
    +
    1428  stage, file, func,
    +
    1429  line );
    +
    1430 #endif
    +
    1431  _out->flush();
    +
    1432  } // if scopes.matches
    +
    1433  }
    +
    1434 
    +
    1436  template<class In>
    +
    1437  void dump(
    +
    1438  const level& stage,
    +
    1439  const In container_begin, const In container_end,
    +
    1440  const std::string& file, const std::string& func, const size_t line,
    +
    1441  const std::string& filename_template = "dump_{n}.dat",
    +
    1442  const std::string sep = dump_default_sep
    +
    1443  ) const
    +
    1444  {
    +
    1445  scope_t scope = locate(stage, file, func, line);
    +
    1446 
    +
    1447  if(scope.matches) {
    +
    1448  const std::string tag = "\\{n\\}";
    +
    1449  const std::regex re(tag);
    +
    1450  std::string outfile = "";
    +
    1451 
    +
    1452  // If the file name template has the {n} tag.
    +
    1453  if(std::regex_search(filename_template, re)) {
    +
    1454  // Increment n until a free one is found.
    +
    1455  size_t n = 0;
    +
    1456  do {
    +
    1457  outfile = replace(filename_template, tag, n);
    +
    1458  n++;
    +
    1459  } while( fs::exists( outfile ) );
    +
    1460 
    +
    1461  } else {
    +
    1462  // Use the parameter as is.
    +
    1463  outfile = filename_template;
    +
    1464  }
    +
    1465 
    +
    1466  std::ofstream fd(outfile);
    +
    1467 
    +
    1468  if(_format_dump.size() > 0) {
    +
    1469 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    1470  fd << format(_format_dump, "", basename(getenv("_")),
    +
    1471  stage, file, func,
    +
    1472  line, scope.depth );
    +
    1473 #else
    +
    1474  fd << format(_format_dump, "",
    +
    1475  stage, file, func,
    +
    1476  line );
    +
    1477 #endif
    +
    1478  fd << sep; // sep after comment line.
    +
    1479  }
    +
    1480 
    +
    1481  std::copy(container_begin, container_end,
    +
    1482  std::ostream_iterator<typename In::value_type>(fd, sep.c_str()));
    +
    1483 
    +
    1484  fd.close();
    +
    1485  } // if scopes.matches
    +
    1486  }
    +
    1487 
    +
    1489 };
    +
    1490 
    +
    1493 #else // not WITH_CLUTCHLOG
    +
    1494 
    +
    1495 
    +
    1496 /**********************************************************************
    +
    1497  * Fake implementation
    +
    1498  **********************************************************************/
    +
    1499 
    +
    1500 // Equivalent class with empty methods, will be optimized out
    +
    1501 // while allowing to actually have calls implemented without WITH_CLUTCHLOG guards.
    +
    1502 #pragma GCC diagnostic push
    +
    1503 #pragma GCC diagnostic ignored "-Wreturn-type"
    +
    1504 class clutchlog
    +
    1505 {
    +
    1506  public:
    +
    1507  static clutchlog& logger() {}
    +
    1508  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
    +
    1509  enum filename {path, base, dir, dirbase, stem, dirstem};
    +
    1510  class fmt {
    +
    1511  public:
    +
    1512  enum class ansi { colors_16, colors_256, colors_16M} mode;
    +
    1513  enum class typo { reset, bold, underline, inverse, none} style;
    +
    1514  enum class fg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none} fore;
    +
    1515  enum class bg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none } back;
    +
    1516  protected:
    +
    1517  friend std::ostream& operator<<(std::ostream&, const std::tuple<fg,bg,typo>&) {}
    +
    1518  friend std::ostream& operator<<(std::ostream&, const typo&) {}
    +
    1519  protected:
    +
    1520  struct color {
    +
    1521  ansi mode;
    +
    1522  enum class ground { fore, back } type;
    +
    1523  color(ansi a, ground g) : mode(a), type(g) {}
    +
    1524  virtual bool is_set() const = 0;
    +
    1525  virtual std::ostream& print_on( std::ostream&) const = 0;
    +
    1526  friend std::ostream& operator<<(std::ostream&, const color&) {}
    +
    1527  };
    +
    1528  struct color_256 : public color {
    +
    1529  short index;
    +
    1530  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
    +
    1531  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {}
    +
    1532  bool is_set() const {}
    +
    1533  std::ostream& print_on( std::ostream&) const {}
    +
    1534  };
    +
    1535  struct fg_256 : public color_256 {
    +
    1536  fg_256() : color_256(ground::fore) {}
    +
    1537  fg_256(const short f) : color_256(ground::fore, f) {}
    +
    1538  fg_256(const fg&) : color_256(ground::fore, -1) {}
    +
    1539  } fore_256;
    +
    1540  struct bg_256 : public color_256 {
    +
    1541  bg_256() : color_256(ground::back) {}
    +
    1542  bg_256(const short b) : color_256(ground::back, b) {}
    +
    1543  bg_256(const bg&) : color_256(ground::back, -1) {}
    +
    1544  } back_256;
    +
    1545  struct color_16M : public color {
    +
    1546  short red, green, blue;
    +
    1547  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
    +
    1548  color_16M(ground t, short r, short g, short b) : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
    +
    1549  color_16M(ground t, const std::string&) : color(ansi::colors_16M, t) {}
    +
    1550  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
    +
    1551  std::ostream& print_on( std::ostream&) const {}
    +
    1552  };
    +
    1553  struct fg_16M : public color_16M {
    +
    1554  fg_16M() : color_16M(ground::fore) {}
    +
    1555  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
    +
    1556  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
    +
    1557  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
    +
    1558  } fore_16M;
    +
    1559  struct bg_16M : public color_16M {
    +
    1560  bg_16M() : color_16M(ground::back) {}
    +
    1561  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
    +
    1562  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
    +
    1563  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
    +
    1564  } back_16M;
    +
    1565  public:
    +
    1566  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
    +
    1567  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    1568  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    1569  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    1570  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    1571  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    1572  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
    +
    1573  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
    +
    1574  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
    +
    1575  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
    +
    1576  fmt(const short fr, const short fg, const short fb,
    +
    1577  const short gr, const short gg, const short gb,
    +
    1578  typo s = typo::none)
    +
    1579  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
    +
    1580  fmt(fg,
    +
    1581  const short gr, const short gg, const short gb,
    +
    1582  typo s = typo::none)
    +
    1583  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
    +
    1584  fmt(const short fr, const short fg, const short fb,
    +
    1585  bg, typo s = typo::none)
    +
    1586  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
    +
    1587  fmt(const short fr, const short fg, const short fb,
    +
    1588  typo s = typo::none)
    +
    1589  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
    +
    1590 
    +
    1591  fmt(const std::string& f, const std::string& b, typo s = typo::none)
    +
    1592  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
    +
    1593  fmt(fg, const std::string& b, typo s = typo::none)
    +
    1594  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
    +
    1595  fmt(const std::string& f, bg, typo s = typo::none)
    +
    1596  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    +
    1597  fmt(const std::string& f, typo s = typo::none)
    +
    1598  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
    +
    1599  protected:
    +
    1600  std::ostream& print_on( std::ostream&) const {}
    +
    1601  public:
    +
    1602  friend std::ostream& operator<<(std::ostream&, const fmt&) {}
    +
    1603  std::string operator()( const std::string&) const {}
    +
    1604  std::string str() const {}
    +
    1605  static fmt hash( const std::string&, const std::vector<fmt>) {}
    +
    1606  };
    +
    1607  public:
    +
    1608  clutchlog(clutchlog const&) = delete;
    +
    1609  void operator=(clutchlog const&) = delete;
    +
    1610  private:
    +
    1611  clutchlog() {}
    +
    1612  protected:
    +
    1613  struct scope_t {};
    +
    1614  scope_t locate(
    +
    1615  const level&,
    +
    1616  const std::string&,
    +
    1617  const std::string&,
    +
    1618  const size_t
    +
    1619  ) const
    +
    1620  {}
    +
    1621  public:
    +
    1622  void format(const std::string&) {}
    +
    1623  std::string format() const {}
    1624 
    -
    1625 #pragma GCC diagnostic push
    -
    1626 #pragma GCC diagnostic ignored "-Wunused-parameter"
    -
    1627  void location(
    -
    1628  const std::string&,
    -
    1629  const std::string& in_function=".*",
    -
    1630  const std::string& in_line=".*"
    -
    1631  )
    -
    1632  {}
    -
    1633 #pragma GCC diagnostic pop
    -
    1634  template<class ... FMT>
    -
    1635  void style(level, FMT...) {}
    -
    1636  void style(level, fmt) {}
    -
    1637  fmt style(level) const {}
    -
    1638  public:
    -
    1639  std::string replace(
    -
    1640  const std::string&,
    -
    1641  const std::string&,
    -
    1642  const std::string&
    -
    1643  ) const
    -
    1644  {}
    -
    1645 
    -
    1646  std::string replace(
    -
    1647  const std::string&,
    -
    1648  const std::string&,
    -
    1649  const size_t
    -
    1650  ) const
    -
    1651  {}
    -
    1652 
    -
    1653  std::string format(
    -
    1654  std::string,
    -
    1655  const std::string&,
    - -
    1657  const std::string&,
    -
    1658 #endif
    -
    1659  const level&,
    -
    1660  const std::string&,
    -
    1661  const std::string&,
    -
    1662  const size_t
    - -
    1664  ,
    -
    1665  const size_t
    -
    1666 #endif
    -
    1667  ) const
    -
    1668  {}
    -
    1669 
    -
    1670  void log(
    -
    1671  const level&,
    -
    1672  const std::string&,
    -
    1673  const std::string&, const std::string&, size_t
    -
    1674  ) const
    -
    1675  {}
    -
    1676 
    -
    1677  template<class In>
    -
    1678  void dump(
    -
    1679  const level&,
    -
    1680  const In, const In,
    -
    1681  const std::string&, const std::string&, size_t,
    -
    1682  const std::string&,
    -
    1683  const std::string
    -
    1684  ) const
    -
    1685  {}
    -
    1686 };
    -
    1687 #pragma GCC diagnostic pop
    -
    1688 #endif // WITH_CLUTCHLOG
    -
    1689 
    -
    1690 #endif // CLUTCHLOG_H
    +
    1625  void format_comment(const std::string&) {}
    +
    1626  std::string format_comment() const {}
    +
    1627 
    +
    1628  void out(std::ostream&) {}
    +
    1629  std::ostream& out() {}
    +
    1630 
    +
    1631 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    1632  void depth(size_t) {}
    +
    1633  size_t depth() const {}
    +
    1634 
    +
    1635  void depth_mark(const std::string) {}
    +
    1636  std::string depth_mark() const {}
    +
    1637  void strip_calls(const size_t) {}
    +
    1638  size_t strip_calls() const {}
    +
    1639 #endif
    +
    1640 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
    +
    1641  void hfill_mark(const char) {}
    +
    1642  char hfill_mark() const {}
    +
    1643  void hfill_fmt(fmt) {}
    +
    1644  fmt hfill_fmt() const {}
    +
    1645  void hfill_min(const size_t) {}
    +
    1646  size_t hfill_min() {}
    +
    1647  void hfill_max(const size_t) {}
    +
    1648  size_t hfill_max() {}
    +
    1649 #endif
    +
    1650  void filehash_styles(std::vector<fmt> ) {}
    +
    1651  void funchash_styles(std::vector<fmt> ) {}
    +
    1652  void depth_styles(std::vector<fmt>) {}
    +
    1653 
    +
    1654  void threshold(level) {}
    +
    1655  void threshold(const std::string&) {}
    +
    1656  level threshold() const {}
    +
    1657  const std::map<std::string,level> levels() const {}
    +
    1658  level level_of(const std::string) {}
    +
    1659 
    +
    1660  void file(std::string) {}
    +
    1661  void func(std::string) {}
    +
    1662  void line(std::string) {}
    +
    1663 
    +
    1664 #pragma GCC diagnostic push
    +
    1665 #pragma GCC diagnostic ignored "-Wunused-parameter"
    +
    1666  void location(
    +
    1667  const std::string&,
    +
    1668  const std::string& in_function=".*",
    +
    1669  const std::string& in_line=".*"
    +
    1670  )
    +
    1671  {}
    +
    1672 #pragma GCC diagnostic pop
    +
    1673  template<class ... FMT>
    +
    1674  void style(level, FMT...) {}
    +
    1675  void style(level, fmt) {}
    +
    1676  fmt style(level) const {}
    +
    1677  void filename(filename) {}
    +
    1678  public:
    +
    1679  std::string replace(
    +
    1680  const std::string&,
    +
    1681  const std::string&,
    +
    1682  const std::string&
    +
    1683  ) const
    +
    1684  {}
    +
    1685 
    +
    1686  std::string replace(
    +
    1687  const std::string&,
    +
    1688  const std::string&,
    +
    1689  const size_t
    +
    1690  ) const
    +
    1691  {}
    +
    1692 
    +
    1693  std::string format(
    +
    1694  std::string,
    +
    1695  const std::string&,
    + +
    1697  const std::string&,
    +
    1698 #endif
    +
    1699  const level&,
    +
    1700  const std::string&,
    +
    1701  const std::string&,
    +
    1702  const size_t
    + +
    1704  ,
    +
    1705  const size_t
    +
    1706 #endif
    +
    1707  ) const
    +
    1708  {}
    +
    1709 
    +
    1710  void log(
    +
    1711  const level&,
    +
    1712  const std::string&,
    +
    1713  const std::string&, const std::string&, size_t
    +
    1714  ) const
    +
    1715  {}
    +
    1716 
    +
    1717  template<class In>
    +
    1718  void dump(
    +
    1719  const level&,
    +
    1720  const In, const In,
    +
    1721  const std::string&, const std::string&, size_t,
    +
    1722  const std::string&,
    +
    1723  const std::string
    +
    1724  ) const
    +
    1725  {}
    +
    1726 };
    +
    1727 #pragma GCC diagnostic pop
    +
    1728 #endif // WITH_CLUTCHLOG
    +
    1729 
    +
    1730 #endif // CLUTCHLOG_H
    -
    friend std::ostream & operator<<(std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
    Output stream operator for a 3-tuple of 16-colors mode tags.
    Definition: clutchlog.h:443
    +
    friend std::ostream & operator<<(std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
    Output stream operator for a 3-tuple of 16-colors mode tags.
    Definition: clutchlog.h:446
    static std::string default_depth_mark
    Default mark for stack depth.
    Definition: clutchlog.h:259
    -
    std::string _format_log
    Current format of the standard output.
    Definition: clutchlog.h:923
    -
    color_16M(ground t, const std::string &srgb)
    Hex triplet string constructor.
    Definition: clutchlog.h:611
    -
    void dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
    Dump a serializable container after a comment line with log information.
    Definition: clutchlog.h:1399
    -
    void depth_styles(std::vector< fmt > styles)
    Set the styles for value-dependant depth formatting.
    Definition: clutchlog.h:1055
    -
    std::map< level, fmt > _level_fmt
    Dictionary of level identifier to their format.
    Definition: clutchlog.h:921
    +
    std::string _format_log
    Current format of the standard output.
    Definition: clutchlog.h:927
    +
    color_16M(ground t, const std::string &srgb)
    Hex triplet string constructor.
    Definition: clutchlog.h:614
    +
    void dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
    Dump a serializable container after a comment line with log information.
    Definition: clutchlog.h:1437
    +
    void depth_styles(std::vector< fmt > styles)
    Set the styles for value-dependant depth formatting.
    Definition: clutchlog.h:1062
    +
    std::map< level, fmt > _level_fmt
    Dictionary of level identifier to their format.
    Definition: clutchlog.h:925
    enum clutchlog::fmt::bg back
    Background color.
    -
    std::vector< fmt > _funchash_fmts
    List of candidate format objects for value-dependant function name styling.
    Definition: clutchlog.h:956
    -
    std::string str() const
    Return the formatting code as a string.
    Definition: clutchlog.h:817
    -
    Foreground in 256-colors mode.
    Definition: clutchlog.h:549
    -
    void line(std::string line)
    Set the regular expression filtering the line location.
    Definition: clutchlog.h:1085
    -
    friend std::ostream & operator<<(std::ostream &os, const color &c)
    Print the actually encoded escaped color sequence on the given stream.
    Definition: clutchlog.h:503
    -
    friend std::ostream & operator<<(std::ostream &os, const typo &s)
    Output stream operator for a typo tag alone, in 16-colors mode.
    Definition: clutchlog.h:465
    +
    std::vector< fmt > _funchash_fmts
    List of candidate format objects for value-dependant function name styling.
    Definition: clutchlog.h:960
    +
    std::string str() const
    Return the formatting code as a string.
    Definition: clutchlog.h:820
    +
    Foreground in 256-colors mode.
    Definition: clutchlog.h:552
    +
    void line(std::string line)
    Set the regular expression filtering the line location.
    Definition: clutchlog.h:1092
    +
    friend std::ostream & operator<<(std::ostream &os, const color &c)
    Print the actually encoded escaped color sequence on the given stream.
    Definition: clutchlog.h:506
    +
    friend std::ostream & operator<<(std::ostream &os, const typo &s)
    Output stream operator for a typo tag alone, in 16-colors mode.
    Definition: clutchlog.h:468
    static std::string dump_default_format
    Default format of the comment line in file dump.
    Definition: clutchlog.h:245
    -
    void out(std::ostream &out)
    Set the output stream on which to print.
    Definition: clutchlog.h:987
    -
    bool is_set() const
    Returns true if the underying representation encodes an existing color.
    Definition: clutchlog.h:633
    -
    fg_16M(const fg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:669
    +
    filename _filename
    Filename rendering method.
    Definition: clutchlog.h:975
    +
    void out(std::ostream &out)
    Set the output stream on which to print.
    Definition: clutchlog.h:994
    +
    bool is_set() const
    Returns true if the underying representation encodes an existing color.
    Definition: clutchlog.h:636
    +
    fg_16M(const fg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:672
    static std::string dump_default_sep
    Default item separator for dump.
    Definition: clutchlog.h:252
    -
    std::string format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
    Substitute all tags in the format string with the corresponding information and apply the style corre...
    Definition: clutchlog.h:1269
    -
    Background in 256-colors mode.
    Definition: clutchlog.h:566
    +
    std::string format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
    Substitute all tags in the format string with the corresponding information and apply the style corre...
    Definition: clutchlog.h:1279
    +
    Background in 256-colors mode.
    Definition: clutchlog.h:569
    #define CLUTCHLOG_DEFAULT_DEPTH_MARK
    Compile-time default mark for stack depth.
    Definition: clutchlog.h:256
    static unsigned int default_strip_calls
    Number of call stack levels to remove from depth display by default.
    Definition: clutchlog.h:266
    static size_t default_hfill_min
    Default minimum width (number of characters) at which to fill for right-aligning the right part of me...
    Definition: clutchlog.h:287
    -
    std::string replace(const std::string &form, const std::string &mark, const std::string &tag) const
    Replace mark by tag in form.
    Definition: clutchlog.h:1193
    -
    color_256(ground t)
    Constructor.
    Definition: clutchlog.h:528
    +
    std::string replace(const std::string &form, const std::string &mark, const std::string &tag) const
    Replace mark by tag in form.
    Definition: clutchlog.h:1203
    +
    color_256(ground t)
    Constructor.
    Definition: clutchlog.h:531
    clutchlog::fmt::bg_16M back_16M
    Current background in 16M-colors mode.
    -
    Interface class for colors representation.
    Definition: clutchlog.h:480
    +
    Interface class for colors representation.
    Definition: clutchlog.h:483
    @ colors_16
    16 colors mode.
    -
    background in 256-colors mode.
    Definition: clutchlog.h:674
    +
    background in 256-colors mode.
    Definition: clutchlog.h:677
    static char default_hfill_char
    Default character used as a filling for right-align the right part of messages with "{hfill}".
    Definition: clutchlog.h:273
    -
    bool matches
    Everything is compatible.
    Definition: clutchlog.h:1120
    +
    bool matches
    Everything is compatible.
    Definition: clutchlog.h:1130
    enum clutchlog::fmt::typo style
    Typographic style.
    -
    Abstract base class for 16M colors objects (24-bits ANSI).
    Definition: clutchlog.h:583
    -
    fg_256(const fg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:561
    -
    void format_comment(const std::string &format)
    Set the template string for dumps.
    Definition: clutchlog.h:982
    -
    bg_16M(const std::string &srgb)
    Hex triplet string constructor.
    Definition: clutchlog.h:694
    -
    void file(std::string file)
    Set the regular expression filtering the file location.
    Definition: clutchlog.h:1081
    -
    scope_t locate(const level &stage, const std::string &file, const std::string &func, const size_t line) const
    Gather information on the current location of the call.
    Definition: clutchlog.h:1142
    +
    Abstract base class for 16M colors objects (24-bits ANSI).
    Definition: clutchlog.h:586
    +
    fg_256(const fg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:564
    +
    void format_comment(const std::string &format)
    Set the template string for dumps.
    Definition: clutchlog.h:989
    +
    bg_16M(const std::string &srgb)
    Hex triplet string constructor.
    Definition: clutchlog.h:697
    +
    void file(std::string file)
    Set the regular expression filtering the file location.
    Definition: clutchlog.h:1088
    +
    scope_t locate(const level &stage, const std::string &file, const std::string &func, const size_t line) const
    Gather information on the current location of the call.
    Definition: clutchlog.h:1152
    clutchlog::fmt::fg_16M fore_16M
    Current foreground in 16M-colors mode.
    -
    Abstract base class for 256 colors objects (8-bits ANSI).
    Definition: clutchlog.h:519
    -
    fmt()
    Empty constructor, only useful for a no-op formatter.
    Definition: clutchlog.h:707
    -
    void style(level stage, fmt style)
    Set the style (color and typo) of the given log level, passing a fmt instance.
    Definition: clutchlog.h:1106
    -
    void threshold(level l)
    Set the log level (below which logs are not printed) with an identifier.
    Definition: clutchlog.h:1058
    -
    level threshold() const
    Get the log level below which logs are not printed.
    Definition: clutchlog.h:1062
    +
    Abstract base class for 256 colors objects (8-bits ANSI).
    Definition: clutchlog.h:522
    +
    fmt()
    Empty constructor, only useful for a no-op formatter.
    Definition: clutchlog.h:710
    +
    void style(level stage, fmt style)
    Set the style (color and typo) of the given log level, passing a fmt instance.
    Definition: clutchlog.h:1113
    +
    void threshold(level l)
    Set the log level (below which logs are not printed) with an identifier.
    Definition: clutchlog.h:1065
    +
    level threshold() const
    Get the log level below which logs are not printed.
    Definition: clutchlog.h:1069
    virtual bool is_set() const =0
    Should return true if the underying representation encodes an existing color.
    -
    std::map< level, std::string > _level_short
    dictionary of level identifier to their 4-letters representation.
    Definition: clutchlog.h:919
    +
    std::map< level, std::string > _level_short
    dictionary of level identifier to their 4-letters representation.
    Definition: clutchlog.h:923
    level
    Available log levels.
    Definition: clutchlog.h:313
    -
    color_256(ground t, const short i)
    Constructor.
    Definition: clutchlog.h:535
    -
    std::ostream & print_on(std::ostream &os) const
    Print the color index on the given stream.
    Definition: clutchlog.h:541
    -
    color_16M(ground t)
    Constructor.
    Definition: clutchlog.h:592
    +
    color_256(ground t, const short i)
    Constructor.
    Definition: clutchlog.h:538
    +
    std::ostream & print_on(std::ostream &os) const
    Print the color index on the given stream.
    Definition: clutchlog.h:544
    +
    color_16M(ground t)
    Constructor.
    Definition: clutchlog.h:595
    static size_t default_hfill_max
    Default maximum width (number of characters) for which to fill for right-aligning the right part of m...
    Definition: clutchlog.h:285
    -
    void funchash_styles(std::vector< fmt > styles)
    Set the candidate styles for value-dependant function name formatting.
    Definition: clutchlog.h:1046
    -
    scope_t()
    Constructor.
    Definition: clutchlog.h:1130
    -
    std::regex _in_func
    Current function location filter.
    Definition: clutchlog.h:949
    +
    void funchash_styles(std::vector< fmt > styles)
    Set the candidate styles for value-dependant function name formatting.
    Definition: clutchlog.h:1053
    +
    scope_t()
    Constructor.
    Definition: clutchlog.h:1140
    +
    std::regex _in_func
    Current function location filter.
    Definition: clutchlog.h:953
    static std::string default_format
    Default format of the messages.
    Definition: clutchlog.h:223
    -
    bg_16M(short r, short g, short b)
    Numeric triplet constructor.
    Definition: clutchlog.h:686
    +
    bg_16M(short r, short g, short b)
    Numeric triplet constructor.
    Definition: clutchlog.h:689
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Foreground in 256-colors mode.
    Definition: clutchlog.h:644
    +
    Foreground in 256-colors mode.
    Definition: clutchlog.h:647
    clutchlog::fmt::fg_256 fore_256
    Current foreground in 256-colors mode.
    enum clutchlog::fmt::fg fore
    Foreground color.
    -
    void filehash_styles(std::vector< fmt > styles)
    Set the candidate styles for value-dependant file name formatting.
    Definition: clutchlog.h:1038
    +
    void filehash_styles(std::vector< fmt > styles)
    Set the candidate styles for value-dependant file name formatting.
    Definition: clutchlog.h:1045
    enum clutchlog::fmt::color::ground type
    Type of color (foreground or background).
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:376
    -
    short index
    The encoded color index in 4-bits ANSI.
    Definition: clutchlog.h:523
    -
    bg_256()
    Empty constructor: no color.
    Definition: clutchlog.h:568
    -
    void func(std::string func)
    Set the regular expression filtering the function location.
    Definition: clutchlog.h:1083
    -
    std::string format() const
    Get the template string.
    Definition: clutchlog.h:979
    -
    std::regex _in_file
    Current file location filter.
    Definition: clutchlog.h:947
    -
    void style(level stage, FMT... styles)
    Set the style (color and typo) of the given log level.
    Definition: clutchlog.h:1104
    -
    bg_256(const bg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:578
    -
    fg_16M()
    Empty constructor: no color.
    Definition: clutchlog.h:646
    -
    level level_of(const std::string name)
    Return the log level tag corresponding to the given pre-configured name.
    Definition: clutchlog.h:1070
    -
    const std::map< level, std::string > _level_word
    Dictionary of level identifier to their string representation.
    Definition: clutchlog.h:915
    -
    std::string operator()(const std::string &msg) const
    Format the given string with the currently encoded format.
    Definition: clutchlog.h:805
    -
    color_16M(ground t, short r, short g, short b)
    Numeric triplet constructor.
    Definition: clutchlog.h:601
    -
    std::ostream & print_on(std::ostream &os) const
    Print the color RGB triplet on the given stream.
    Definition: clutchlog.h:636
    -
    bg
    Background color codes.
    Definition: clutchlog.h:421
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    +
    short index
    The encoded color index in 4-bits ANSI.
    Definition: clutchlog.h:526
    +
    bg_256()
    Empty constructor: no color.
    Definition: clutchlog.h:571
    +
    void func(std::string func)
    Set the regular expression filtering the function location.
    Definition: clutchlog.h:1090
    +
    std::string format() const
    Get the template string.
    Definition: clutchlog.h:986
    +
    std::regex _in_file
    Current file location filter.
    Definition: clutchlog.h:951
    +
    void style(level stage, FMT... styles)
    Set the style (color and typo) of the given log level.
    Definition: clutchlog.h:1111
    +
    bg_256(const bg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:581
    +
    fg_16M()
    Empty constructor: no color.
    Definition: clutchlog.h:649
    +
    level level_of(const std::string name)
    Return the log level tag corresponding to the given pre-configured name.
    Definition: clutchlog.h:1077
    +
    void filename(filename f)
    Sets the file naming scheme. *‍/.
    Definition: clutchlog.h:1118
    +
    const std::map< level, std::string > _level_word
    Dictionary of level identifier to their string representation.
    Definition: clutchlog.h:919
    +
    std::string operator()(const std::string &msg) const
    Format the given string with the currently encoded format.
    Definition: clutchlog.h:808
    +
    color_16M(ground t, short r, short g, short b)
    Numeric triplet constructor.
    Definition: clutchlog.h:604
    +
    std::ostream & print_on(std::ostream &os) const
    Print the color RGB triplet on the given stream.
    Definition: clutchlog.h:639
    +
    bg
    Background color codes.
    Definition: clutchlog.h:424
    #define CLUTCHLOG_DEFAULT_FORMAT
    Compile-time default format of the messages (debug mode: with absolute location).
    Definition: clutchlog.h:208
    -
    std::regex _in_line
    Current line location filter.
    Definition: clutchlog.h:951
    -
    fg_256(const short f)
    Constructor.
    Definition: clutchlog.h:556
    +
    std::regex _in_line
    Current line location filter.
    Definition: clutchlog.h:955
    +
    fg_256(const short f)
    Constructor.
    Definition: clutchlog.h:559
    @ colors_256
    256 colors mode.
    enum clutchlog::fmt::ansi mode
    Current ANSI color mode.
    -
    std::string replace(const std::string &form, const std::string &mark, const size_t tag) const
    Replace mark by tag in form, converting tag to its string representation first.
    Definition: clutchlog.h:1258
    -
    std::string format_comment() const
    Get the template string for dumps.
    Definition: clutchlog.h:984
    -
    fg_256()
    Empty constructor: no color.
    Definition: clutchlog.h:551
    +
    std::string replace(const std::string &form, const std::string &mark, const size_t tag) const
    Replace mark by tag in form, converting tag to its string representation first.
    Definition: clutchlog.h:1268
    +
    std::string format_comment() const
    Get the template string for dumps.
    Definition: clutchlog.h:991
    +
    fg_256()
    Empty constructor: no color.
    Definition: clutchlog.h:554
    @ colors_16M
    16 millions ("true") colors mode.
    -
    std::string _format_dump
    Current format of the file output.
    Definition: clutchlog.h:925
    +
    std::string _format_dump
    Current format of the file output.
    Definition: clutchlog.h:929
    #define CLUTCHDUMP_DEFAULT_SEP
    Compile-time default item separator for dump.
    Definition: clutchlog.h:249
    -
    bg_256(const short b)
    Constructor.
    Definition: clutchlog.h:573
    -
    ground
    Codes for representing foreground or background.
    Definition: clutchlog.h:484
    -
    Structure holding a location matching.
    Definition: clutchlog.h:1118
    +
    bg_256(const short b)
    Constructor.
    Definition: clutchlog.h:576
    +
    ground
    Codes for representing foreground or background.
    Definition: clutchlog.h:487
    +
    filename
    Available filename rendering methods.
    Definition: clutchlog.h:316
    +
    Structure holding a location matching.
    Definition: clutchlog.h:1128
    #define CLUTCHLOG_DEFAULT_HFILL_MARK
    Character used as a filling for right-align the right part of messages with "{hfill}".
    Definition: clutchlog.h:270
    -
    std::ostream & print_on(std::ostream &os) const
    Print the currently encoded format escape code on the given output stream.
    Definition: clutchlog.h:756
    -
    bool is_set() const
    Returns true if the underying representation encodes an existing color.
    Definition: clutchlog.h:538
    -
    std::ostream * _out
    Standard output.
    Definition: clutchlog.h:937
    -
    std::ostream & out()
    Get the output stream on which to print.
    Definition: clutchlog.h:989
    -
    void threshold(const std::string &l)
    Set the log level (below which logs are not printed) with a string.
    Definition: clutchlog.h:1060
    +
    std::ostream & print_on(std::ostream &os) const
    Print the currently encoded format escape code on the given output stream.
    Definition: clutchlog.h:759
    +
    bool is_set() const
    Returns true if the underying representation encodes an existing color.
    Definition: clutchlog.h:541
    +
    std::ostream * _out
    Standard output.
    Definition: clutchlog.h:941
    +
    std::ostream & out()
    Get the output stream on which to print.
    Definition: clutchlog.h:996
    +
    void threshold(const std::string &l)
    Set the log level (below which logs are not printed) with a string.
    Definition: clutchlog.h:1067
    virtual std::ostream & print_on(std::ostream &os) const =0
    Should print the underlying representation on the given stream.
    -
    const std::map< std::string, level > & levels() const
    Get the map of available log levels string representations toward their identifier....
    Definition: clutchlog.h:1064
    -
    size_t _strip_calls
    Current number of call stack levels to remove from depth display.
    Definition: clutchlog.h:913
    -
    level stage
    Current log level.
    Definition: clutchlog.h:1122
    -
    bool there
    Location is compatible.
    Definition: clutchlog.h:1128
    -
    fg_16M(const std::string &srgb)
    Hex triplet string constructor.
    Definition: clutchlog.h:664
    +
    const std::map< std::string, level > & levels() const
    Get the map of available log levels string representations toward their identifier....
    Definition: clutchlog.h:1071
    +
    size_t _strip_calls
    Current number of call stack levels to remove from depth display.
    Definition: clutchlog.h:917
    +
    level stage
    Current log level.
    Definition: clutchlog.h:1132
    +
    bool there
    Location is compatible.
    Definition: clutchlog.h:1138
    +
    fg_16M(const std::string &srgb)
    Hex triplet string constructor.
    Definition: clutchlog.h:667
    #define CLUTCHLOG_STRIP_CALLS
    Compile-time number of call stack levels to remove from depth display by default.
    Definition: clutchlog.h:263
    -
    friend std::ostream & operator<<(std::ostream &os, const fmt &fmt)
    Output stream overload.
    Definition: clutchlog.h:790
    -
    void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
    Print a log message IF the location matches the given one.
    Definition: clutchlog.h:1374
    -
    bg_16M(const bg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:699
    -
    bg_16M()
    Empty constructor: no color.
    Definition: clutchlog.h:676
    -
    std::map< std::string, level > _word_level
    Dictionary of level string to their identifier.
    Definition: clutchlog.h:917
    -
    level _stage
    Current log level.
    Definition: clutchlog.h:945
    -
    fmt style(level stage) const
    Get the configured fmt instance of the given log level.
    Definition: clutchlog.h:1108
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:389
    -
    void location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
    Set the regular expressions filtering the location.
    Definition: clutchlog.h:1088
    +
    friend std::ostream & operator<<(std::ostream &os, const fmt &fmt)
    Output stream overload.
    Definition: clutchlog.h:793
    +
    void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
    Print a log message IF the location matches the given one.
    Definition: clutchlog.h:1412
    +
    bg_16M(const bg &)
    Conversion constructor from 16-colors mode.
    Definition: clutchlog.h:702
    +
    bg_16M()
    Empty constructor: no color.
    Definition: clutchlog.h:679
    +
    std::map< std::string, level > _word_level
    Dictionary of level string to their identifier.
    Definition: clutchlog.h:921
    +
    level _stage
    Current log level.
    Definition: clutchlog.h:949
    +
    fmt style(level stage) const
    Get the configured fmt instance of the given log level.
    Definition: clutchlog.h:1115
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:392
    +
    void location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
    Set the regular expressions filtering the location.
    Definition: clutchlog.h:1095
    #define CLUTCHLOG_HAVE_UNIX_SYSINFO
    True if POSIX headers necessary for stack depth management are available.
    Definition: clutchlog.h:33
    -
    std::vector< fmt > _filehash_fmts
    List of candidate format objects for value-dependant file name styling.
    Definition: clutchlog.h:954
    +
    std::vector< fmt > _filehash_fmts
    List of candidate format objects for value-dependant file name styling.
    Definition: clutchlog.h:958
    The single class which holds everything.
    Definition: clutchlog.h:187
    -
    ansi
    ANSI code configuring the available number of colors.
    Definition: clutchlog.h:379
    -
    fg_16M(short r, short g, short b)
    Numeric triplet constructor.
    Definition: clutchlog.h:656
    -
    fg
    Foreground color codes.
    Definition: clutchlog.h:400
    -
    short red
    The encoded RGB indices.
    Definition: clutchlog.h:587
    +
    ansi
    ANSI code configuring the available number of colors.
    Definition: clutchlog.h:382
    +
    fg_16M(short r, short g, short b)
    Numeric triplet constructor.
    Definition: clutchlog.h:659
    +
    fg
    Foreground color codes.
    Definition: clutchlog.h:403
    +
    short red
    The encoded RGB indices.
    Definition: clutchlog.h:590
    #define CLUTCHDUMP_DEFAULT_FORMAT
    Compile-time default format of the comment line in file dump.
    Definition: clutchlog.h:231
    -
    color(ansi a, ground g)
    Constructor.
    Definition: clutchlog.h:494
    +
    color(ansi a, ground g)
    Constructor.
    Definition: clutchlog.h:497
    clutchlog::fmt::bg_256 back_256
    Current background in 256-colors mode.
    @@ -84,7 +84,7 @@ $(document).ready(function(){initNavTree('dir_59425e443f801f1f2fd8bbe4959a3ccf.h
    -

    tests → clutchlog Relation

    Public Member Functions

    std::cout << error("ERROR") << std::endl;
    Note
    A formatter called this way WILL output a reset escape code at the end.
    -

    Definition at line 805 of file clutchlog.h.

    +

    Definition at line 808 of file clutchlog.h.

    -

    References print_on().

    +

    References print_on().

    @@ -462,7 +462,7 @@ std::ostream & 
    std::cout << error << "ERROR" << end << std::endl;
    Note
    An formatter called this way will NOT output a reset escape code.
    -

    Definition at line 790 of file clutchlog.h.

    +

    Definition at line 793 of file clutchlog.h.

    @@ -497,7 +497,7 @@ std::ostream & 
    Definition at line 379 of file clutchlog.h.

    +

    Definition at line 382 of file clutchlog.h.

    @@ -506,7 +506,7 @@ std::ostream & 
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:376
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    clutchlog -  0.15 +  0.16
    clutchlog -  0.15 +  0.16
    clutchlog -  0.15 +  0.16
    clutchlog -  0.15 +  0.16
    File in testsIncludes file in clutchlog
    t-assert.cppclutchlog.h
    t-color.cppclutchlog.h
    t-color16M.cppclutchlog.h
    t-color256.cppclutchlog.h
    t-demo-extravagant.cppclutchlog.h
    t-demo.cppclutchlog.h
    t-depth-delta.cppclutchlog.h
    t-dump.cppclutchlog.h
    t-fmt-constructors.cppclutchlog.h
    t-hash-color.cppclutchlog.h
    t-log.cppclutchlog.h
    t-one-line-if.cppclutchlog.h
    +

    tests → clutchlog Relation

    File in testsIncludes file in clutchlog
    t-assert.cppclutchlog.h
    t-color.cppclutchlog.h
    t-color16M.cppclutchlog.h
    t-color256.cppclutchlog.h
    t-demo-extravagant.cppclutchlog.h
    t-demo.cppclutchlog.h
    t-depth-delta.cppclutchlog.h
    t-dump.cppclutchlog.h
    t-filename.cppclutchlog.h
    t-fmt-constructors.cppclutchlog.h
    t-hash-color.cppclutchlog.h
    t-log.cppclutchlog.h
    t-one-line-if.cppclutchlog.h
    diff --git a/docs/files_dup.js b/docs/files_dup.js index de394c4..e4d1828 100644 --- a/docs/files_dup.js +++ b/docs/files_dup.js @@ -9,6 +9,7 @@ var files_dup = [ "t-demo.cpp", "t-demo_8cpp_source.html", null ], [ "t-depth-delta.cpp", "t-depth-delta_8cpp_source.html", null ], [ "t-dump.cpp", "t-dump_8cpp_source.html", null ], + [ "t-filename.cpp", "t-filename_8cpp_source.html", null ], [ "t-fmt-constructors.cpp", "t-fmt-constructors_8cpp_source.html", null ], [ "t-hash-color.cpp", "t-hash-color_8cpp_source.html", null ], [ "t-log.cpp", "t-log_8cpp_source.html", null ], diff --git a/docs/functions.html b/docs/functions.html index 7ae6bc1..31320a1 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    @@ -90,6 +90,9 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
  • _filehash_fmts : clutchlog
  • +
  • _filename +: clutchlog +
  • _format_dump : clutchlog
  • @@ -224,6 +227,9 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
  • filehash_styles() : clutchlog
  • +
  • filename +: clutchlog +
  • fmt() : clutchlog::fmt
  • @@ -237,10 +243,10 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable(); : clutchlog::fmt
  • format() -: clutchlog +: clutchlog
  • format_comment() -: clutchlog +: clutchlog
  • func() : clutchlog diff --git a/docs/functions_enum.html b/docs/functions_enum.html index 3dccd46..f965338 100644 --- a/docs/functions_enum.html +++ b/docs/functions_enum.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    @@ -94,6 +94,9 @@ $(document).ready(function(){initNavTree('functions_enum.html',''); initResizabl
  • fg : clutchlog::fmt
  • +
  • filename +: clutchlog +
  • ground : clutchlog::fmt::color
  • diff --git a/docs/functions_func.html b/docs/functions_func.html index eab349f..64f0a99 100644 --- a/docs/functions_func.html +++ b/docs/functions_func.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    @@ -132,11 +132,14 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl
  • filehash_styles() : clutchlog
  • +
  • filename() +: clutchlog +
  • fmt() : clutchlog::fmt
  • format() -: clutchlog +: clutchlog
  • format_comment() : clutchlog diff --git a/docs/functions_rela.html b/docs/functions_rela.html index c2eefc2..035e264 100644 --- a/docs/functions_rela.html +++ b/docs/functions_rela.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/functions_vars.html b/docs/functions_vars.html index d4a0507..5f74176 100644 --- a/docs/functions_vars.html +++ b/docs/functions_vars.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    @@ -90,6 +90,9 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
  • _filehash_fmts : clutchlog
  • +
  • _filename +: clutchlog +
  • _format_dump : clutchlog
  • diff --git a/docs/globals.html b/docs/globals.html index 918f052..7584db1 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/globals_defs.html b/docs/globals_defs.html index a0cb07e..01b28ff 100644 --- a/docs/globals_defs.html +++ b/docs/globals_defs.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/graph_legend.html b/docs/graph_legend.html index edb553d..003b89f 100644 --- a/docs/graph_legend.html +++ b/docs/graph_legend.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/group___default_config.html b/docs/group___default_config.html index fe42a2a..a06d5bb 100644 --- a/docs/group___default_config.html +++ b/docs/group___default_config.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/group___formating.html b/docs/group___formating.html index 5bbe894..2a6ff4e 100644 --- a/docs/group___formating.html +++ b/docs/group___formating.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/group___main.html b/docs/group___main.html index 80a0c24..1ae3900 100644 --- a/docs/group___main.html +++ b/docs/group___main.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/group___main.js b/docs/group___main.js index c1d2ac0..5fc80f3 100644 --- a/docs/group___main.js +++ b/docs/group___main.js @@ -1,11 +1,11 @@ var group___main = [ [ "clutchlog", "classclutchlog.html", [ - [ "System-dependent stack depth", "index.html#autotoc_md26", null ], - [ "System-dependent horizontal fill", "index.html#autotoc_md27", null ], - [ "Dependencies", "index.html#autotoc_md28", null ], - [ "Variable names within the CLUTCHLOG macro", "index.html#autotoc_md29", null ], - [ "Features", "index.html#autotoc_md30", null ], + [ "System-dependent stack depth", "index.html#autotoc_md27", null ], + [ "System-dependent horizontal fill", "index.html#autotoc_md28", null ], + [ "Dependencies", "index.html#autotoc_md29", null ], + [ "Variable names within the CLUTCHLOG macro", "index.html#autotoc_md30", null ], + [ "Features", "index.html#autotoc_md31", null ], [ "scope_t", "structclutchlog_1_1scope__t.html", [ [ "scope_t", "structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572", null ], [ "matches", "structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9", null ], @@ -37,6 +37,7 @@ var group___main = [ "style", "classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591", null ], [ "style", "classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6", null ], [ "style", "classclutchlog.html#a4831f44fd5ade102e57320632095934d", null ], + [ "filename", "classclutchlog.html#a82b9375728af2d962831a743d95f4ae7", null ], [ "locate", "classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96", null ], [ "replace", "classclutchlog.html#a972f895c70edc335f3018a2c8971d59e", null ], [ "replace", "classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2", null ], @@ -65,6 +66,7 @@ var group___main = [ "_in_line", "classclutchlog.html#a41757198b29862832a14472a9e5e24c6", null ], [ "_filehash_fmts", "classclutchlog.html#a2a334e009533744b52f01ef240a59e9d", null ], [ "_funchash_fmts", "classclutchlog.html#a095e1545a2085ac623e4af19364fea7f", null ], + [ "_filename", "classclutchlog.html#a0431616914dbbecb908a794f5b46dada", null ], [ "level", "classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928", [ [ "critical", "classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af332f31a368c931f79b9b64d55fc7701", null ], [ "error", "classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a023c3e8a55ddfd140d3e3268dd6221e9", null ], @@ -74,6 +76,14 @@ var group___main = [ "info", "classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aa1ea607f2bfe5db06f1cf2bd991f7dc1", null ], [ "debug", "classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a911f5ef324f37061f68a239577e0d0bd", null ], [ "xdebug", "classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928abba74b810831c7753777e6dcc0c0f4e2", null ] + ] ], + [ "filename", "classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e", [ + [ "path", "classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea19ebb39c0f117afbe6658bbc9bea68a4", null ], + [ "base", "classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ead79ddc78294d362c22ba917cba2cd3ef", null ], + [ "dir", "classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea35cf5f272267d9656cfcfe52243f4841", null ], + [ "dirbase", "classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea9534ecbf6a632833ca32ea5bb33f7eea", null ], + [ "stem", "classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea04548b133168127416623d51dd3b9338", null ], + [ "dirstem", "classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea5b96778dd84a50c1b288b31a5200df4d", null ] ] ] ] ] ]; \ No newline at end of file diff --git a/docs/group___use_macros.html b/docs/group___use_macros.html index dfca8d2..9b21266 100644 --- a/docs/group___use_macros.html +++ b/docs/group___use_macros.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/group__colors16.html b/docs/group__colors16.html index c5291b3..0dcd958 100644 --- a/docs/group__colors16.html +++ b/docs/group__colors16.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/group__colors256__16_m.html b/docs/group__colors256__16_m.html index ce01f78..8f5793f 100644 --- a/docs/group__colors256__16_m.html +++ b/docs/group__colors256__16_m.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/hierarchy.html b/docs/hierarchy.html index 9399f28..a9d01bd 100644 --- a/docs/hierarchy.html +++ b/docs/hierarchy.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    diff --git a/docs/index.html b/docs/index.html index 4c937e3..5f42249 100644 --- a/docs/index.html +++ b/docs/index.html @@ -28,7 +28,7 @@ Logo
    clutchlog -  0.15 +  0.16
    @@ -109,25 +109,26 @@ $(document).ready(function(){initNavTree('index.html',''); initResizable(); });
  • Stack Depth Mark
  • Horizontal Filling
  • Stack Depth
  • +
  • Filename
  • -
  • Disabled calls
  • -
  • Low-level API
  • -
  • (De)clutch any function call
  • -
  • (De)clutch any code section
  • -
  • Manually Increase Stack Depth
  • +
  • Disabled calls
  • +
  • Low-level API
  • +
  • (De)clutch any function call
  • +
  • (De)clutch any code section
  • +
  • Manually Increase Stack Depth
  • -
  • Examples
  • -
  • Limitations

      Clutchlog is a spatial logging system that targets versatile debugging. It allows to (de)clutch messages for a given: log level, source code location or call stack depth.

      @@ -231,7 +232,7 @@ Output Configuration
    • {level}: the current log level (i.e. Critical, Error, Warning, Progress, Note, Info, Debug or XDebug),
    • {level_letter}: the first letter of the current log level,
    • {level_short}: the current log level, printed in only four letters,
    • -
    • {file}: the current file (absolute path),
    • +
    • {file}: the current file name,
    • {func}: the current function,
    • {line}: the current line number,
    • {level_fmt}: the style of the current level (i.e. configured with clutchlog::style),
    • @@ -376,7 +377,24 @@ Horizontal Filling

      Stack Depth

      By default, clutchlog removes 5 levels of the calls stack, so that your main entrypoint corresponds to a depth of zero. You can change this behaviour by defining the CLUTCHLOG_STRIP_CALLS macro, or calling clutchlog::strip_calls.

      log.strip_calls(CLUTCHLOG_STRIP_CALLS); // Defaults to 5.
      -

      +

      +Filename

      +

      By default, the {file} template tag is rendered as the absolute path (which is usualy handy if your terminal detects paths and allows to run a command on click).

      +

      You can change this behavior to display shorter names, using clutchlog::filename, and passing one of the following the shortening method:

        +
      • clutchlog::filename::base: the file name itself,
      • +
      • clutchlog::filename::dir: the name of the single last directory containing the file,
      • +
      • clutchlog::filename::dirbase: the last directory and the file names,
      • +
      • clutchlog::filename::stem: the file name without its extension,
      • +
      • clutchlog::filename::dirstem: the last directory and the file without extension.
      • +
      • clutchlog::filename::path: the absolute path (the default).
      • +
      +

      Example:

      log.filename(clutchlog::filename::path) // /home/nojhan/code/clutchlog/tests/t-filename.cpp
      +
      log.filename(clutchlog::filename::base) // t-filename.cpp
      +
      log.filename(clutchlog::filename::dir) // tests
      +
      log.filename(clutchlog::filename::dirbase) // tests/t-filename.cpp
      +
      log.filename(clutchlog::filename::stem) // t-filename
      +
      log.filename(clutchlog::filename::dirstem) // tests/t-filename
      +

      Disabled calls

      By default, clutchlog is always enabled if the NDEBUG preprocessor variable is not defined (this variable is set by CMake in build types that differs from Debug).

      You can however force clutchlog to be enabled in any build type by setting the WITH_CLUTCHLOG preprocessor variable.

      @@ -385,7 +403,7 @@ Disabled calls
      #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG clutchlog::level::xdebug

      Note that allowing a log level does not mean that it will actually output something. If the configured log level at runtime is lower than the log level of the message, it will still not be printed.

      This behavior intend to remove as many conditional statements as possible when not debugging, without having to use preprocessor guards around calls to clutchlog, thus saving run time at no readability cost.

      -

      +

      Low-level API

      All configuration setters have a getters counterpart, with the same name but taking no parameter, for example:

      std::string mark = log.depth_mark();

      To control more precisely the logging, one can use the low-level clutchlog::log method:

      log.log(clutchlog::level::xdebug, "hello world", "main.cpp", "main", 122);
      @@ -393,24 +411,24 @@ Low-level API

      A similar dump method exists:

      log.dump(clutchlog::level::xdebug, cont.begin(), cont.end(), CLUTCHLOC, "dumped_{n}.dat", "\n");
      log.dump(clutchlog::level::xdebug, cont.begin(), cont.end(), "main.cpp", "main", 122, "dumped.dat", "\n\n");

      You can access the identifier of log levels with clutchlog::level_of:

      log.threshold( log.level_of("XDebug") ); // You have to know the exact string.
      -

      +

      (De)clutch any function call

      The CLUTHFUNC macro allows to wrap any function within the current logger.

      For instance, this can be useful if you want to (de)clutch calls to asserts. To do that, just declare your own macro:

      #define ASSERT(...) { CLUTCHFUNC(error, assert, __VA_ARGS__) }

      Thus, any call like ASSERT(x > 3); will be declutchable with the same configuration than a call to CLUTCHLOG.

      -

      +

      (De)clutch any code section

      The CLUTCHCODE macro allows to wrap any code within the current logger.

      For instance:

      std::clog << "We are clutched!\n";
      );
      -

      +

      Manually Increase Stack Depth

      You may want to manually increase the stack depth for a given logging call, for instance to subdivise a single function in sections. To do so, you can use the CLUTCHLOGD macro, which take an additional argument, in the form of the number of additional (fake) stack depths you want:

      CLUTCHLOG( debug, "Call"); // Regular macro.
      CLUTCHLOGD(debug, "Sub call", 1); // Adds an additional (fake) stack depth.
      CLUTCHLOGD(debug, "Sub sub!", 2); // Adds two additional (fake) stack depths.

      That way, the depth will be rendered to the actual depth, plus the additional depth delta. Note that the displayed function will stay the same. Any filtering on the stack depth will take into account the fake depth and not the real one.

      -

      +

      Examples

      Here what you would do to setup clutchlog with the default configuration:

      auto& log = clutchlog::logger();
      log.out(std::clog);
      @@ -482,29 +500,29 @@ Examples
      log.hfill_char('.');
      log.hfill_max(300);
      log.hfill_style(clutchlog::fmt::fg::none);
      -

      +

      Limitations

      -

      +

      System-dependent stack depth

      Because access to the call stack depth and program name are system-dependent, the features relying on the depth of the call stack and the display of the program name are only available for operating systems having the following headers: execinfo.h, stdlib.h and libgen.h (so far, tested with Linux).

      Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSINFO to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

      #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      log.depth( x );
      #endif
      -

      +

      System-dependent horizontal fill

      Because access to the current terminal width is system-dependent, the {hfill} format tag feature is only available for operating systems having the following headers: sys/ioctl.h, stdio.h and unistd.h (so far, tested with Linux).

      Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSIOCTL to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

      #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      log.hfill_mark( '_' );
      #endif

      If you use unicode characters in your template, the horizontal width will not be computed properly, resulting in incorrectly right-aligned lines. Solving this would require the use of third-party libraries, making portability more difficult.

      -

      +

      Dependencies

      Some colors/styles may not be supported by some exotic terminal emulators.

      Clutchlog needs C++-17 with the filesystem feature. You may need to indicate -std=c++17 -lstdc++fs to some compilers.

      -

      +

      Variable names within the CLUTCHLOG macro

      Calling the CLUTCHLOG macro with a message using a variable named clutchlog__msg will end in an error.

      -

      +

      Features

      What Clutchlog do not provide at the moment (but may in a near future):

        @@ -520,7 +538,7 @@ Features
      • Automatic argument parser (please, use a dedicated lib).
      • Signal handling (WTF would you do that, anyway?).
      -

      +

      Build and tests

      To use clutchlog, just include its header in your code and either ensure that the NDEBUG preprocessor variable is not set, either define the WITH_CLUTCHLOG preprocessor variable.

      If you're using CMake (or another modern build system), it will unset NDEBUG —and thus enable clutchlog— only for the "Debug" build type, which is usually what you want if you use clutchlog, anyway.

      @@ -538,7 +556,7 @@ Build and tests
      #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
      Log a message at the given level and with a given depth delta.
      Definition: clutchlog.h:81
      #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
      Dump the given container.
      Definition: clutchlog.h:107
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      #define CLUTCHLOC
      Handy shortcuts to location.
      Definition: clutchlog.h:77
      #define CLUTCHLOG_DEFAULT_HFILL_MARK
      Character used as a filling for right-align the right part of messages with "{hfill}".
      Definition: clutchlog.h:270
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      diff --git a/docs/inherits.html b/docs/inherits.html index 276ad39..7d1cca4 100644 --- a/docs/inherits.html +++ b/docs/inherits.html @@ -28,7 +28,7 @@ Logo
      clutchlog -  0.15 +  0.16
      diff --git a/docs/modules.html b/docs/modules.html index 1055d3d..2174db0 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -28,7 +28,7 @@ Logo
      clutchlog -  0.15 +  0.16
      diff --git a/docs/navtreedata.js b/docs/navtreedata.js index d99221a..b21b8d8 100644 --- a/docs/navtreedata.js +++ b/docs/navtreedata.js @@ -45,17 +45,18 @@ var NAVTREE = [ "Dump Format", "index.html#autotoc_md15", null ], [ "Stack Depth Mark", "index.html#autotoc_md16", null ], [ "Horizontal Filling", "index.html#autotoc_md17", null ], - [ "Stack Depth", "index.html#autotoc_md18", null ] + [ "Stack Depth", "index.html#autotoc_md18", null ], + [ "Filename", "index.html#autotoc_md19", null ] ] ], - [ "Disabled calls", "index.html#autotoc_md19", null ], - [ "Low-level API", "index.html#autotoc_md20", null ], - [ "(De)clutch any function call", "index.html#autotoc_md21", null ], - [ "(De)clutch any code section", "index.html#autotoc_md22", null ], - [ "Manually Increase Stack Depth", "index.html#autotoc_md23", null ] + [ "Disabled calls", "index.html#autotoc_md20", null ], + [ "Low-level API", "index.html#autotoc_md21", null ], + [ "(De)clutch any function call", "index.html#autotoc_md22", null ], + [ "(De)clutch any code section", "index.html#autotoc_md23", null ], + [ "Manually Increase Stack Depth", "index.html#autotoc_md24", null ] ] ], - [ "Examples", "index.html#autotoc_md24", null ], - [ "Limitations", "index.html#autotoc_md25", null ], - [ "Build and tests", "index.html#autotoc_md31", null ] + [ "Examples", "index.html#autotoc_md25", null ], + [ "Limitations", "index.html#autotoc_md26", null ], + [ "Build and tests", "index.html#autotoc_md32", null ] ] ], [ "Modules", "modules.html", "modules" ], [ "Classes", "annotated.html", [ @@ -83,7 +84,7 @@ var NAVTREE = var NAVTREEINDEX = [ "annotated.html", -"structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6" +"structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/navtreeindex0.js b/docs/navtreeindex0.js index b13489b..8df93de 100644 --- a/docs/navtreeindex0.js +++ b/docs/navtreeindex0.js @@ -3,65 +3,74 @@ var NAVTREEINDEX0 = "annotated.html":[2,0], "classclutchlog.html":[1,2,0], "classclutchlog.html#a03b145e36f15435a640bb5a885d9f642":[1,2,0,7], +"classclutchlog.html#a0431616914dbbecb908a794f5b46dada":[1,2,0,60], "classclutchlog.html#a08310b92e86687349e70f56f9ac1d656":[1,2,0,18], -"classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae":[1,2,0,48], +"classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae":[1,2,0,49], "classclutchlog.html#a0906d74275cedcd403da94879764815e":[1,2,0,6], -"classclutchlog.html#a095e1545a2085ac623e4af19364fea7f":[1,2,0,58], -"classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc":[1,2,0,37], +"classclutchlog.html#a095e1545a2085ac623e4af19364fea7f":[1,2,0,59], +"classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc":[1,2,0,38], "classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c":[1,2,0,24], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928":[1,2,0,59], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a023c3e8a55ddfd140d3e3268dd6221e9":[1,2,0,59,1], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a6efd7b28f876c0473c6dfeae82fc8e05":[1,2,0,59,3], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a911f5ef324f37061f68a239577e0d0bd":[1,2,0,59,6], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aa1ea607f2bfe5db06f1cf2bd991f7dc1":[1,2,0,59,5], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aab4ce1a501f9cbe27666659d3b19534c":[1,2,0,59,2], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928abba74b810831c7753777e6dcc0c0f4e2":[1,2,0,59,7], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af332f31a368c931f79b9b64d55fc7701":[1,2,0,59,0], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af89a12aab2a73ea31e19b04ecadbdc0d":[1,2,0,59,4], -"classclutchlog.html#a130c4f12eacbd2028102838fe16b734e":[1,2,0,55], -"classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a":[1,2,0,35], -"classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167":[1,2,0,52], -"classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468":[1,2,0,41], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928":[1,2,0,61], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a023c3e8a55ddfd140d3e3268dd6221e9":[1,2,0,61,1], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a6efd7b28f876c0473c6dfeae82fc8e05":[1,2,0,61,3], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a911f5ef324f37061f68a239577e0d0bd":[1,2,0,61,6], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aa1ea607f2bfe5db06f1cf2bd991f7dc1":[1,2,0,61,5], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aab4ce1a501f9cbe27666659d3b19534c":[1,2,0,61,2], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928abba74b810831c7753777e6dcc0c0f4e2":[1,2,0,61,7], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af332f31a368c931f79b9b64d55fc7701":[1,2,0,61,0], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af89a12aab2a73ea31e19b04ecadbdc0d":[1,2,0,61,4], +"classclutchlog.html#a130c4f12eacbd2028102838fe16b734e":[1,2,0,56], +"classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a":[1,2,0,36], +"classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167":[1,2,0,53], +"classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468":[1,2,0,42], "classclutchlog.html#a2144abe4ec6f630126b6490908b5f924":[1,2,0,12], -"classclutchlog.html#a229fd61519f1245282440120f2d45fb5":[1,2,0,40], -"classclutchlog.html#a2a334e009533744b52f01ef240a59e9d":[1,2,0,57], -"classclutchlog.html#a356df86455409193792b6ed550dfd09e":[1,2,0,45], +"classclutchlog.html#a229fd61519f1245282440120f2d45fb5":[1,2,0,41], +"classclutchlog.html#a2a334e009533744b52f01ef240a59e9d":[1,2,0,58], +"classclutchlog.html#a356df86455409193792b6ed550dfd09e":[1,2,0,46], "classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4":[1,2,0,19], -"classclutchlog.html#a41757198b29862832a14472a9e5e24c6":[1,2,0,56], +"classclutchlog.html#a41757198b29862832a14472a9e5e24c6":[1,2,0,57], "classclutchlog.html#a4831f44fd5ade102e57320632095934d":[1,2,0,30], -"classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96":[1,2,0,31], -"classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7":[1,2,0,44], -"classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5":[1,2,0,51], +"classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96":[1,2,0,32], +"classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7":[1,2,0,45], +"classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5":[1,2,0,52], "classclutchlog.html#a656c277e074b64728cca871f2b484d1c":[1,2,0,10], "classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3":[1,2,0,27], "classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266":[1,2,0,15], -"classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6":[1,2,0,42], +"classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6":[1,2,0,43], "classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9":[1,2,0,20], -"classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e":[1,2,0,50], +"classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e":[1,2,0,51], "classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d":[1,2,0,14], -"classclutchlog.html#a972f895c70edc335f3018a2c8971d59e":[1,2,0,32], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e":[1,2,0,62], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea04548b133168127416623d51dd3b9338":[1,2,0,62,4], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea19ebb39c0f117afbe6658bbc9bea68a4":[1,2,0,62,0], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea35cf5f272267d9656cfcfe52243f4841":[1,2,0,62,2], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea5b96778dd84a50c1b288b31a5200df4d":[1,2,0,62,5], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea9534ecbf6a632833ca32ea5bb33f7eea":[1,2,0,62,3], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ead79ddc78294d362c22ba917cba2cd3ef":[1,2,0,62,1], +"classclutchlog.html#a82b9375728af2d962831a743d95f4ae7":[1,2,0,31], +"classclutchlog.html#a972f895c70edc335f3018a2c8971d59e":[1,2,0,33], "classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9":[1,2,0,26], "classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5":[1,2,0,13], -"classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f":[1,2,0,46], +"classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f":[1,2,0,47], "classclutchlog.html#ab45287cc9c14217904a13aff49573732":[1,2,0,21], -"classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb":[1,2,0,36], -"classclutchlog.html#ab805ac5c33885459f9f752518a4aa735":[1,2,0,49], -"classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888":[1,2,0,47], -"classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761":[1,2,0,34], +"classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb":[1,2,0,37], +"classclutchlog.html#ab805ac5c33885459f9f752518a4aa735":[1,2,0,50], +"classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888":[1,2,0,48], +"classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761":[1,2,0,35], "classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591":[1,2,0,28], -"classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1":[1,2,0,43], +"classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1":[1,2,0,44], "classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416":[1,2,0,17], -"classclutchlog.html#ace879554298e6e6e36dafef330c27be8":[1,2,0,38], +"classclutchlog.html#ace879554298e6e6e36dafef330c27be8":[1,2,0,39], "classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd":[1,2,0,23], "classclutchlog.html#acfaceb77da01503b432644a3efaee4fa":[1,2,0,8], "classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6":[1,2,0,29], "classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447":[1,2,0,25], -"classclutchlog.html#aded03528f34d9000f618419c482c5042":[1,2,0,54], +"classclutchlog.html#aded03528f34d9000f618419c482c5042":[1,2,0,55], "classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf":[1,2,0,16], -"classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2":[1,2,0,33], -"classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993":[1,2,0,53], +"classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2":[1,2,0,34], +"classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993":[1,2,0,54], "classclutchlog.html#aef653a9744a72a889ca8163269bb781e":[1,2,0,9], -"classclutchlog.html#af898bffe23b125245e338d7495c76d45":[1,2,0,39], +"classclutchlog.html#af898bffe23b125245e338d7495c76d45":[1,2,0,40], "classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80":[1,2,0,11], "classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a":[1,2,0,22], "classclutchlog_1_1fmt.html":[1,3,0], @@ -122,10 +131,10 @@ var NAVTREEINDEX0 = "group___default_config.html#ga45c4c964fad4ad1641d5c9c28c4645b9":[1,0,4], "group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805":[1,0,6], "group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805":[3,0,0,17], -"group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa":[1,0,1], "group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa":[3,0,0,12], -"group___default_config.html#ga54d29e956575e1c731eab5406135c5df":[1,0,3], +"group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa":[1,0,1], "group___default_config.html#ga54d29e956575e1c731eab5406135c5df":[3,0,0,14], +"group___default_config.html#ga54d29e956575e1c731eab5406135c5df":[1,0,3], "group___default_config.html#ga8564be479b948ee3052b61783c66d415":[3,0,0,5], "group___default_config.html#ga8564be479b948ee3052b61783c66d415":[1,0,0], "group___default_config.html#ga98f30d814d4913a8a7c93a8793f49adf":[1,0,5], @@ -139,12 +148,12 @@ var NAVTREEINDEX0 = "group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2":[1,1,3], "group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d":[1,1,2], "group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d":[3,0,0,8], -"group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae":[1,1,4], "group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae":[3,0,0,10], -"group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73":[3,0,0,11], +"group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae":[1,1,4], "group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73":[1,1,5], -"group___use_macros.html#gae8911119d726a43b77f5781cb5a72813":[3,0,0,6], +"group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73":[3,0,0,11], "group___use_macros.html#gae8911119d726a43b77f5781cb5a72813":[1,1,0], +"group___use_macros.html#gae8911119d726a43b77f5781cb5a72813":[3,0,0,6], "group__colors16.html":[1,4], "group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e":[1,3,0,36], "group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e":[1,4,1], @@ -152,10 +161,10 @@ var NAVTREEINDEX0 = "group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33":[1,4,5], "group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0":[1,3,0,35], "group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0":[1,4,0], -"group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7":[1,4,4], "group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7":[1,3,0,22], -"group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401":[1,4,2], +"group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7":[1,4,4], "group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401":[1,3,0,27], +"group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401":[1,4,2], "group__colors16.html#ga86696b20e5b31c96ba592926efb324f3":[1,4,3], "group__colors16.html#ga86696b20e5b31c96ba592926efb324f3":[1,3,0,28], "group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea1ffd9e753c8054cc61456ac7fac1ac89":[1,3,0,36,0], @@ -193,17 +202,17 @@ var NAVTREEINDEX0 = "group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0ad508fe45cecaf653904a0e774084bb5c":[1,3,0,35,7], "group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0ada7527acf78cb4e7b582e8163a1f642a":[1,3,0,35,15], "group__colors256__16_m.html":[1,5], -"group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0":[1,3,0,30], "group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0":[1,5,8], +"group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0":[1,3,0,30], "group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de":[1,3,0,31], "group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de":[1,5,9], "group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0":[1,5,10], "group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0":[1,3,0,32], -"group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c":[1,3,0,29], "group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c":[1,5,7], +"group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c":[1,3,0,29], "hierarchy.html":[2,2], -"index.html":[0], "index.html":[], +"index.html":[0], "index.html#autotoc_md0":[0,0], "index.html#autotoc_md1":[0,1], "index.html#autotoc_md10":[0,3,4,0], @@ -215,21 +224,22 @@ var NAVTREEINDEX0 = "index.html#autotoc_md16":[0,4,0,1], "index.html#autotoc_md17":[0,4,0,2], "index.html#autotoc_md18":[0,4,0,3], -"index.html#autotoc_md19":[0,4,1], +"index.html#autotoc_md19":[0,4,0,4], "index.html#autotoc_md2":[0,2], -"index.html#autotoc_md20":[0,4,2], -"index.html#autotoc_md21":[0,4,3], -"index.html#autotoc_md22":[0,4,4], -"index.html#autotoc_md23":[0,4,5], -"index.html#autotoc_md24":[0,5], -"index.html#autotoc_md25":[0,6], -"index.html#autotoc_md26":[0], -"index.html#autotoc_md27":[1], -"index.html#autotoc_md28":[2], -"index.html#autotoc_md29":[3], +"index.html#autotoc_md20":[0,4,1], +"index.html#autotoc_md21":[0,4,2], +"index.html#autotoc_md22":[0,4,3], +"index.html#autotoc_md23":[0,4,4], +"index.html#autotoc_md24":[0,4,5], +"index.html#autotoc_md25":[0,5], +"index.html#autotoc_md26":[0,6], +"index.html#autotoc_md27":[0], +"index.html#autotoc_md28":[1], +"index.html#autotoc_md29":[2], "index.html#autotoc_md3":[0,3], -"index.html#autotoc_md30":[4], -"index.html#autotoc_md31":[0,7], +"index.html#autotoc_md30":[3], +"index.html#autotoc_md31":[4], +"index.html#autotoc_md32":[0,7], "index.html#autotoc_md4":[0,3,0], "index.html#autotoc_md5":[0,3,1], "index.html#autotoc_md6":[0,3,2], @@ -239,15 +249,5 @@ var NAVTREEINDEX0 = "modules.html":[1], "pages.html":[], "structclutchlog_1_1fmt_1_1bg__16_m.html":[1,5,6], -"structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0":[1,5,6,0], -"structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d":[1,5,6,3], -"structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501":[1,5,6,1], -"structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97":[1,5,6,2], -"structclutchlog_1_1fmt_1_1bg__256.html":[1,5,3], -"structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd":[1,5,3,2], -"structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90":[1,5,3,0], -"structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad":[1,5,3,1], -"structclutchlog_1_1fmt_1_1color.html":[1,5,0], -"structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae":[1,5,0,5], -"structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac":[1,5,0,0] +"structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0":[1,5,6,0] }; diff --git a/docs/navtreeindex1.js b/docs/navtreeindex1.js index 84950af..c6d0f2d 100644 --- a/docs/navtreeindex1.js +++ b/docs/navtreeindex1.js @@ -1,5 +1,15 @@ var NAVTREEINDEX1 = { +"structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d":[1,5,6,3], +"structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501":[1,5,6,1], +"structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97":[1,5,6,2], +"structclutchlog_1_1fmt_1_1bg__256.html":[1,5,3], +"structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd":[1,5,3,2], +"structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90":[1,5,3,0], +"structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad":[1,5,3,1], +"structclutchlog_1_1fmt_1_1color.html":[1,5,0], +"structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae":[1,5,0,5], +"structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac":[1,5,0,0], "structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6":[1,5,0,3], "structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603":[1,5,0,1], "structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f":[1,5,0,2], @@ -44,8 +54,9 @@ var NAVTREEINDEX1 = "t-demo_8cpp_source.html":[3,0,6], "t-depth-delta_8cpp_source.html":[3,0,7], "t-dump_8cpp_source.html":[3,0,8], -"t-fmt-constructors_8cpp_source.html":[3,0,9], -"t-hash-color_8cpp_source.html":[3,0,10], -"t-log_8cpp_source.html":[3,0,11], -"t-one-line-if_8cpp_source.html":[3,0,12] +"t-filename_8cpp_source.html":[3,0,9], +"t-fmt-constructors_8cpp_source.html":[3,0,10], +"t-hash-color_8cpp_source.html":[3,0,11], +"t-log_8cpp_source.html":[3,0,12], +"t-one-line-if_8cpp_source.html":[3,0,13] }; diff --git a/docs/search/all_0.js b/docs/search/all_0.js index e6209f7..4cb16ca 100644 --- a/docs/search/all_0.js +++ b/docs/search/all_0.js @@ -1,17 +1,18 @@ var searchData= [ ['_5ffilehash_5ffmts_0',['_filehash_fmts',['../classclutchlog.html#a2a334e009533744b52f01ef240a59e9d',1,'clutchlog']]], - ['_5fformat_5fdump_1',['_format_dump',['../classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5',1,'clutchlog']]], - ['_5fformat_5flog_2',['_format_log',['../classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e',1,'clutchlog']]], - ['_5ffunchash_5ffmts_3',['_funchash_fmts',['../classclutchlog.html#a095e1545a2085ac623e4af19364fea7f',1,'clutchlog']]], - ['_5fin_5ffile_4',['_in_file',['../classclutchlog.html#aded03528f34d9000f618419c482c5042',1,'clutchlog']]], - ['_5fin_5ffunc_5',['_in_func',['../classclutchlog.html#a130c4f12eacbd2028102838fe16b734e',1,'clutchlog']]], - ['_5fin_5fline_6',['_in_line',['../classclutchlog.html#a41757198b29862832a14472a9e5e24c6',1,'clutchlog']]], - ['_5flevel_5ffmt_7',['_level_fmt',['../classclutchlog.html#ab805ac5c33885459f9f752518a4aa735',1,'clutchlog']]], - ['_5flevel_5fshort_8',['_level_short',['../classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae',1,'clutchlog']]], - ['_5flevel_5fword_9',['_level_word',['../classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f',1,'clutchlog']]], - ['_5fout_10',['_out',['../classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167',1,'clutchlog']]], - ['_5fstage_11',['_stage',['../classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993',1,'clutchlog']]], - ['_5fstrip_5fcalls_12',['_strip_calls',['../classclutchlog.html#a356df86455409193792b6ed550dfd09e',1,'clutchlog']]], - ['_5fword_5flevel_13',['_word_level',['../classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888',1,'clutchlog']]] + ['_5ffilename_1',['_filename',['../classclutchlog.html#a0431616914dbbecb908a794f5b46dada',1,'clutchlog']]], + ['_5fformat_5fdump_2',['_format_dump',['../classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5',1,'clutchlog']]], + ['_5fformat_5flog_3',['_format_log',['../classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e',1,'clutchlog']]], + ['_5ffunchash_5ffmts_4',['_funchash_fmts',['../classclutchlog.html#a095e1545a2085ac623e4af19364fea7f',1,'clutchlog']]], + ['_5fin_5ffile_5',['_in_file',['../classclutchlog.html#aded03528f34d9000f618419c482c5042',1,'clutchlog']]], + ['_5fin_5ffunc_6',['_in_func',['../classclutchlog.html#a130c4f12eacbd2028102838fe16b734e',1,'clutchlog']]], + ['_5fin_5fline_7',['_in_line',['../classclutchlog.html#a41757198b29862832a14472a9e5e24c6',1,'clutchlog']]], + ['_5flevel_5ffmt_8',['_level_fmt',['../classclutchlog.html#ab805ac5c33885459f9f752518a4aa735',1,'clutchlog']]], + ['_5flevel_5fshort_9',['_level_short',['../classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae',1,'clutchlog']]], + ['_5flevel_5fword_10',['_level_word',['../classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f',1,'clutchlog']]], + ['_5fout_11',['_out',['../classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167',1,'clutchlog']]], + ['_5fstage_12',['_stage',['../classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993',1,'clutchlog']]], + ['_5fstrip_5fcalls_13',['_strip_calls',['../classclutchlog.html#a356df86455409193792b6ed550dfd09e',1,'clutchlog']]], + ['_5fword_5flevel_14',['_word_level',['../classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888',1,'clutchlog']]] ]; diff --git a/docs/search/all_1.js b/docs/search/all_1.js index eafa84d..2aa49b3 100644 --- a/docs/search/all_1.js +++ b/docs/search/all_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['ansi_14',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] + ['ansi_15',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/all_10.js b/docs/search/all_10.js index 7af2ab2..3ad80e3 100644 --- a/docs/search/all_10.js +++ b/docs/search/all_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['with_5fclutchlog_101',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] + ['with_5fclutchlog_103',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] ]; diff --git a/docs/search/all_2.js b/docs/search/all_2.js index 86a1b84..bb2aa6d 100644 --- a/docs/search/all_2.js +++ b/docs/search/all_2.js @@ -1,9 +1,9 @@ var searchData= [ - ['back_15',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], - ['back_5f16m_16',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], - ['back_5f256_17',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]], - ['bg_18',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]], - ['bg_5f16m_19',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt::bg_16M'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)']]], - ['bg_5f256_20',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt::bg_256'],['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)']]] + ['back_16',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], + ['back_5f16m_17',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], + ['back_5f256_18',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]], + ['bg_19',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]], + ['bg_5f16m_20',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt::bg_16M'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)']]], + ['bg_5f256_21',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt::bg_256'],['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)']]] ]; diff --git a/docs/search/all_3.js b/docs/search/all_3.js index 288d35a..00ceeae 100644 --- a/docs/search/all_3.js +++ b/docs/search/all_3.js @@ -1,28 +1,28 @@ var searchData= [ - ['clutchcode_21',['CLUTCHCODE',['../group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73',1,'clutchlog.h']]], - ['clutchdump_22',['CLUTCHDUMP',['../group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2',1,'clutchlog.h']]], - ['clutchdump_5fdefault_5fformat_23',['CLUTCHDUMP_DEFAULT_FORMAT',['../group___default_config.html#ga27b613c6727857a7cbcd0165d862034e',1,'clutchlog.h']]], - ['clutchdump_5fdefault_5fsep_24',['CLUTCHDUMP_DEFAULT_SEP',['../group___default_config.html#ga54d29e956575e1c731eab5406135c5df',1,'clutchlog.h']]], - ['clutchfunc_25',['CLUTCHFUNC',['../group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae',1,'clutchlog.h']]], - ['clutchloc_26',['CLUTCHLOC',['../group___use_macros.html#gae8911119d726a43b77f5781cb5a72813',1,'clutchlog.h']]], - ['clutchlog_27',['clutchlog',['../classclutchlog.html',1,'clutchlog'],['../group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d',1,'CLUTCHLOG(): clutchlog.h']]], - ['clutchlog_2eh_28',['clutchlog.h',['../clutchlog_8h.html',1,'']]], - ['clutchlog_5fdefault_5fdepth_5fbuilt_5fnodebug_29',['CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG',['../group___default_config.html#ga8564be479b948ee3052b61783c66d415',1,'clutchlog.h']]], - ['clutchlog_5fdefault_5fdepth_5fmark_30',['CLUTCHLOG_DEFAULT_DEPTH_MARK',['../group___default_config.html#ga45c4c964fad4ad1641d5c9c28c4645b9',1,'clutchlog.h']]], - ['clutchlog_5fdefault_5fformat_31',['CLUTCHLOG_DEFAULT_FORMAT',['../group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa',1,'clutchlog.h']]], - ['clutchlog_5fdefault_5fhfill_5fmark_32',['CLUTCHLOG_DEFAULT_HFILL_MARK',['../group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805',1,'clutchlog.h']]], - ['clutchlog_5fh_33',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysinfo_34',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysioctl_35',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]], - ['clutchlog_5fstrip_5fcalls_36',['CLUTCHLOG_STRIP_CALLS',['../group___default_config.html#ga98f30d814d4913a8a7c93a8793f49adf',1,'clutchlog.h']]], - ['clutchlogd_37',['CLUTCHLOGD',['../group___use_macros.html#ga369d365b7c25ec270596c3ca6839cf2c',1,'clutchlog.h']]], - ['color_38',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt::color'],['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color::color()']]], - ['color_5f16m_39',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt::color_16M'],['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], - ['color_5f256_40',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt::color_256'],['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]], - ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_41',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]], - ['colors_5f16_42',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], - ['colors_5f16m_43',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], - ['colors_5f256_44',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]], - ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_45',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]] + ['clutchcode_22',['CLUTCHCODE',['../group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73',1,'clutchlog.h']]], + ['clutchdump_23',['CLUTCHDUMP',['../group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2',1,'clutchlog.h']]], + ['clutchdump_5fdefault_5fformat_24',['CLUTCHDUMP_DEFAULT_FORMAT',['../group___default_config.html#ga27b613c6727857a7cbcd0165d862034e',1,'clutchlog.h']]], + ['clutchdump_5fdefault_5fsep_25',['CLUTCHDUMP_DEFAULT_SEP',['../group___default_config.html#ga54d29e956575e1c731eab5406135c5df',1,'clutchlog.h']]], + ['clutchfunc_26',['CLUTCHFUNC',['../group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae',1,'clutchlog.h']]], + ['clutchloc_27',['CLUTCHLOC',['../group___use_macros.html#gae8911119d726a43b77f5781cb5a72813',1,'clutchlog.h']]], + ['clutchlog_28',['clutchlog',['../classclutchlog.html',1,'clutchlog'],['../group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d',1,'CLUTCHLOG(): clutchlog.h']]], + ['clutchlog_2eh_29',['clutchlog.h',['../clutchlog_8h.html',1,'']]], + ['clutchlog_5fdefault_5fdepth_5fbuilt_5fnodebug_30',['CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG',['../group___default_config.html#ga8564be479b948ee3052b61783c66d415',1,'clutchlog.h']]], + ['clutchlog_5fdefault_5fdepth_5fmark_31',['CLUTCHLOG_DEFAULT_DEPTH_MARK',['../group___default_config.html#ga45c4c964fad4ad1641d5c9c28c4645b9',1,'clutchlog.h']]], + ['clutchlog_5fdefault_5fformat_32',['CLUTCHLOG_DEFAULT_FORMAT',['../group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa',1,'clutchlog.h']]], + ['clutchlog_5fdefault_5fhfill_5fmark_33',['CLUTCHLOG_DEFAULT_HFILL_MARK',['../group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805',1,'clutchlog.h']]], + ['clutchlog_5fh_34',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysinfo_35',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysioctl_36',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]], + ['clutchlog_5fstrip_5fcalls_37',['CLUTCHLOG_STRIP_CALLS',['../group___default_config.html#ga98f30d814d4913a8a7c93a8793f49adf',1,'clutchlog.h']]], + ['clutchlogd_38',['CLUTCHLOGD',['../group___use_macros.html#ga369d365b7c25ec270596c3ca6839cf2c',1,'clutchlog.h']]], + ['color_39',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt::color'],['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color::color()']]], + ['color_5f16m_40',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt::color_16M'],['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], + ['color_5f256_41',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt::color_256'],['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]], + ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_42',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]], + ['colors_5f16_43',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], + ['colors_5f16m_44',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], + ['colors_5f256_45',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]], + ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_46',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]] ]; diff --git a/docs/search/all_4.js b/docs/search/all_4.js index 46bf0a2..3f03f41 100644 --- a/docs/search/all_4.js +++ b/docs/search/all_4.js @@ -1,14 +1,14 @@ var searchData= [ - ['default_5fdepth_5fmark_46',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], - ['default_5fformat_47',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], - ['default_5fhfill_5fchar_48',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], - ['default_5fhfill_5fmax_49',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], - ['default_5fhfill_5fmin_50',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], - ['default_5fstrip_5fcalls_51',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], - ['default_20configuration_20management_52',['Default configuration management',['../group___default_config.html',1,'']]], - ['depth_5fstyles_53',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], - ['dump_54',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]], - ['dump_5fdefault_5fformat_55',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], - ['dump_5fdefault_5fsep_56',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] + ['default_5fdepth_5fmark_47',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], + ['default_5fformat_48',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], + ['default_5fhfill_5fchar_49',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], + ['default_5fhfill_5fmax_50',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], + ['default_5fhfill_5fmin_51',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], + ['default_5fstrip_5fcalls_52',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], + ['default_20configuration_20management_53',['Default configuration management',['../group___default_config.html',1,'']]], + ['depth_5fstyles_54',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], + ['dump_55',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]], + ['dump_5fdefault_5fformat_56',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], + ['dump_5fdefault_5fsep_57',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] ]; diff --git a/docs/search/all_5.js b/docs/search/all_5.js index a1b1827..e1b533b 100644 --- a/docs/search/all_5.js +++ b/docs/search/all_5.js @@ -1,17 +1,18 @@ var searchData= [ - ['fg_57',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]], - ['fg_5f16m_58',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt::fg_16M'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)']]], - ['fg_5f256_59',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt::fg_256'],['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], - ['file_60',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], - ['filehash_5fstyles_61',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], - ['fmt_62',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog::fmt'],['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt::fmt()']]], - ['fore_63',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], - ['fore_5f16m_64',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], - ['fore_5f256_65',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]], - ['format_66',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], - ['format_5fcomment_67',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], - ['formating_20tools_68',['Formating tools',['../group___formating.html',1,'']]], - ['func_69',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], - ['funchash_5fstyles_70',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] + ['fg_58',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]], + ['fg_5f16m_59',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt::fg_16M'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)']]], + ['fg_5f256_60',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt::fg_256'],['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], + ['file_61',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], + ['filehash_5fstyles_62',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], + ['filename_63',['filename',['../classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e',1,'clutchlog::filename()'],['../classclutchlog.html#a82b9375728af2d962831a743d95f4ae7',1,'clutchlog::filename(filename f)']]], + ['fmt_64',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog::fmt'],['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt::fmt()']]], + ['fore_65',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], + ['fore_5f16m_66',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], + ['fore_5f256_67',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]], + ['format_68',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], + ['format_5fcomment_69',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], + ['formating_20tools_70',['Formating tools',['../group___formating.html',1,'']]], + ['func_71',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], + ['funchash_5fstyles_72',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] ]; diff --git a/docs/search/all_6.js b/docs/search/all_6.js index 18610bc..7734da7 100644 --- a/docs/search/all_6.js +++ b/docs/search/all_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['ground_71',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] + ['ground_73',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] ]; diff --git a/docs/search/all_7.js b/docs/search/all_7.js index 034b038..68cafeb 100644 --- a/docs/search/all_7.js +++ b/docs/search/all_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['high_2dlevel_20api_20macros_72',['High-level API macros',['../group___use_macros.html',1,'']]] + ['high_2dlevel_20api_20macros_74',['High-level API macros',['../group___use_macros.html',1,'']]] ]; diff --git a/docs/search/all_8.js b/docs/search/all_8.js index beb9e6e..1de2bbd 100644 --- a/docs/search/all_8.js +++ b/docs/search/all_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_73',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]], - ['index_74',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]], - ['is_5fset_75',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] + ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_75',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]], + ['index_76',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]], + ['is_5fset_77',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] ]; diff --git a/docs/search/all_9.js b/docs/search/all_9.js index 6341594..dfc3e8a 100644 --- a/docs/search/all_9.js +++ b/docs/search/all_9.js @@ -1,11 +1,11 @@ var searchData= [ - ['level_76',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]], - ['level_5fof_77',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], - ['levels_78',['levels',['../classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a',1,'clutchlog']]], - ['line_79',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], - ['locate_80',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], - ['location_81',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], - ['log_82',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], - ['logger_83',['logger',['../classclutchlog.html#acfaceb77da01503b432644a3efaee4fa',1,'clutchlog']]] + ['level_78',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]], + ['level_5fof_79',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], + ['levels_80',['levels',['../classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a',1,'clutchlog']]], + ['line_81',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], + ['locate_82',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], + ['location_83',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], + ['log_84',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], + ['logger_85',['logger',['../classclutchlog.html#acfaceb77da01503b432644a3efaee4fa',1,'clutchlog']]] ]; diff --git a/docs/search/all_a.js b/docs/search/all_a.js index c3fc305..2972a6d 100644 --- a/docs/search/all_a.js +++ b/docs/search/all_a.js @@ -1,6 +1,6 @@ var searchData= [ - ['main_20class_84',['Main class',['../group___main.html',1,'']]], - ['matches_85',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], - ['mode_86',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] + ['main_20class_86',['Main class',['../group___main.html',1,'']]], + ['matches_87',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], + ['mode_88',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/all_b.js b/docs/search/all_b.js index 343a4ed..d173001 100644 --- a/docs/search/all_b.js +++ b/docs/search/all_b.js @@ -1,6 +1,6 @@ var searchData= [ - ['operator_28_29_87',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], - ['operator_3c_3c_88',['operator<<',['../group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da',1,'clutchlog::fmt::operator<<()']]], - ['out_89',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266',1,'clutchlog::out()']]] + ['operator_28_29_89',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], + ['operator_3c_3c_90',['operator<<',['../group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da',1,'clutchlog::fmt::operator<<()']]], + ['out_91',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266',1,'clutchlog::out()']]] ]; diff --git a/docs/search/all_c.js b/docs/search/all_c.js index 9560a5c..b7a232d 100644 --- a/docs/search/all_c.js +++ b/docs/search/all_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['print_5fon_90',['print_on',['../structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#aaae6106a11eddade981172324a43df68',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a674910195e7bb14d78f0cf56c308a47e',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0',1,'clutchlog::fmt::print_on()']]] + ['print_5fon_92',['print_on',['../structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#aaae6106a11eddade981172324a43df68',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a674910195e7bb14d78f0cf56c308a47e',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0',1,'clutchlog::fmt::print_on()']]] ]; diff --git a/docs/search/all_d.js b/docs/search/all_d.js index 3961c91..16fdbcb 100644 --- a/docs/search/all_d.js +++ b/docs/search/all_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['red_91',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]], - ['replace_92',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] + ['red_93',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]], + ['replace_94',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] ]; diff --git a/docs/search/all_e.js b/docs/search/all_e.js index 02ec835..e1f8b5a 100644 --- a/docs/search/all_e.js +++ b/docs/search/all_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['scope_5ft_93',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog::scope_t'],['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t::scope_t()']]], - ['stage_94',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], - ['str_95',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], - ['style_96',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt::style()'],['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] + ['scope_5ft_95',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog::scope_t'],['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t::scope_t()']]], + ['stage_96',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], + ['str_97',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], + ['style_98',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt::style()'],['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] ]; diff --git a/docs/search/all_f.js b/docs/search/all_f.js index 42bb7c9..ab2b559 100644 --- a/docs/search/all_f.js +++ b/docs/search/all_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['there_97',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], - ['threshold_98',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]], - ['type_99',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]], - ['typo_100',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] + ['there_99',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], + ['threshold_100',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]], + ['type_101',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]], + ['typo_102',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/classes_0.js b/docs/search/classes_0.js index f692a3e..fdb2334 100644 --- a/docs/search/classes_0.js +++ b/docs/search/classes_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['bg_5f16m_102',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt']]], - ['bg_5f256_103',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt']]] + ['bg_5f16m_104',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt']]], + ['bg_5f256_105',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/classes_1.js b/docs/search/classes_1.js index fa43409..3894de8 100644 --- a/docs/search/classes_1.js +++ b/docs/search/classes_1.js @@ -1,7 +1,7 @@ var searchData= [ - ['clutchlog_104',['clutchlog',['../classclutchlog.html',1,'']]], - ['color_105',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt']]], - ['color_5f16m_106',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt']]], - ['color_5f256_107',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt']]] + ['clutchlog_106',['clutchlog',['../classclutchlog.html',1,'']]], + ['color_107',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt']]], + ['color_5f16m_108',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt']]], + ['color_5f256_109',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/classes_2.js b/docs/search/classes_2.js index db7f454..b6d5ae6 100644 --- a/docs/search/classes_2.js +++ b/docs/search/classes_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['fg_5f16m_108',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt']]], - ['fg_5f256_109',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt']]], - ['fmt_110',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog']]] + ['fg_5f16m_110',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt']]], + ['fg_5f256_111',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt']]], + ['fmt_112',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog']]] ]; diff --git a/docs/search/classes_3.js b/docs/search/classes_3.js index 0ec6e6c..94d55bd 100644 --- a/docs/search/classes_3.js +++ b/docs/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['scope_5ft_111',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog']]] + ['scope_5ft_113',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog']]] ]; diff --git a/docs/search/defines_0.js b/docs/search/defines_0.js index a6e00ca..0e94cd9 100644 --- a/docs/search/defines_0.js +++ b/docs/search/defines_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['clutchlog_5fh_191',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysinfo_192',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysioctl_193',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]] + ['clutchlog_5fh_196',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysinfo_197',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysioctl_198',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]] ]; diff --git a/docs/search/defines_1.js b/docs/search/defines_1.js index 2852c6f..0f8fb71 100644 --- a/docs/search/defines_1.js +++ b/docs/search/defines_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['with_5fclutchlog_194',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] + ['with_5fclutchlog_199',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] ]; diff --git a/docs/search/enums_0.js b/docs/search/enums_0.js index 4aac607..de05d1c 100644 --- a/docs/search/enums_0.js +++ b/docs/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['ansi_181',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] + ['ansi_185',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/enums_1.js b/docs/search/enums_1.js index 9040ba8..38744d8 100644 --- a/docs/search/enums_1.js +++ b/docs/search/enums_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['bg_182',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]] + ['bg_186',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/enums_2.js b/docs/search/enums_2.js index 571f951..c374900 100644 --- a/docs/search/enums_2.js +++ b/docs/search/enums_2.js @@ -1,4 +1,5 @@ var searchData= [ - ['fg_183',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]] + ['fg_187',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]], + ['filename_188',['filename',['../classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e',1,'clutchlog']]] ]; diff --git a/docs/search/enums_3.js b/docs/search/enums_3.js index d194dd9..4e146eb 100644 --- a/docs/search/enums_3.js +++ b/docs/search/enums_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['ground_184',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] + ['ground_189',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] ]; diff --git a/docs/search/enums_4.js b/docs/search/enums_4.js index 7ed93d8..c3daf46 100644 --- a/docs/search/enums_4.js +++ b/docs/search/enums_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['level_185',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]] + ['level_190',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]] ]; diff --git a/docs/search/enums_5.js b/docs/search/enums_5.js index 19089d1..24bc40b 100644 --- a/docs/search/enums_5.js +++ b/docs/search/enums_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['typo_186',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] + ['typo_191',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/enumvalues_0.js b/docs/search/enumvalues_0.js index b51a3fb..a9f6d14 100644 --- a/docs/search/enumvalues_0.js +++ b/docs/search/enumvalues_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['colors_5f16_187',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], - ['colors_5f16m_188',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], - ['colors_5f256_189',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]] + ['colors_5f16_192',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], + ['colors_5f16m_193',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], + ['colors_5f256_194',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/files_0.js b/docs/search/files_0.js index f64c748..712b4cc 100644 --- a/docs/search/files_0.js +++ b/docs/search/files_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['clutchlog_2eh_112',['clutchlog.h',['../clutchlog_8h.html',1,'']]] + ['clutchlog_2eh_114',['clutchlog.h',['../clutchlog_8h.html',1,'']]] ]; diff --git a/docs/search/functions_0.js b/docs/search/functions_0.js index eaf6e3e..609cc2c 100644 --- a/docs/search/functions_0.js +++ b/docs/search/functions_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['bg_5f16m_113',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)']]], - ['bg_5f256_114',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)']]] + ['bg_5f16m_115',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)']]], + ['bg_5f256_116',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)']]] ]; diff --git a/docs/search/functions_1.js b/docs/search/functions_1.js index c971e35..f05ad1f 100644 --- a/docs/search/functions_1.js +++ b/docs/search/functions_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['color_115',['color',['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color']]], - ['color_5f16m_116',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], - ['color_5f256_117',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]] + ['color_117',['color',['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color']]], + ['color_5f16m_118',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], + ['color_5f256_119',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]] ]; diff --git a/docs/search/functions_2.js b/docs/search/functions_2.js index 4082572..10882d3 100644 --- a/docs/search/functions_2.js +++ b/docs/search/functions_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['depth_5fstyles_118',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], - ['dump_119',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]] + ['depth_5fstyles_120',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], + ['dump_121',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]] ]; diff --git a/docs/search/functions_3.js b/docs/search/functions_3.js index db0bc74..9a3c384 100644 --- a/docs/search/functions_3.js +++ b/docs/search/functions_3.js @@ -1,12 +1,13 @@ var searchData= [ - ['fg_5f16m_120',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)']]], - ['fg_5f256_121',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], - ['file_122',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], - ['filehash_5fstyles_123',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], - ['fmt_124',['fmt',['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt']]], - ['format_125',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], - ['format_5fcomment_126',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], - ['func_127',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], - ['funchash_5fstyles_128',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] + ['fg_5f16m_122',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)']]], + ['fg_5f256_123',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], + ['file_124',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], + ['filehash_5fstyles_125',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], + ['filename_126',['filename',['../classclutchlog.html#a82b9375728af2d962831a743d95f4ae7',1,'clutchlog']]], + ['fmt_127',['fmt',['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt']]], + ['format_128',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], + ['format_5fcomment_129',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], + ['func_130',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], + ['funchash_5fstyles_131',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] ]; diff --git a/docs/search/functions_4.js b/docs/search/functions_4.js index 007774f..94d08f7 100644 --- a/docs/search/functions_4.js +++ b/docs/search/functions_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['is_5fset_129',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] + ['is_5fset_132',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] ]; diff --git a/docs/search/functions_5.js b/docs/search/functions_5.js index df8c2ff..363dae5 100644 --- a/docs/search/functions_5.js +++ b/docs/search/functions_5.js @@ -1,10 +1,10 @@ var searchData= [ - ['level_5fof_130',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], - ['levels_131',['levels',['../classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a',1,'clutchlog']]], - ['line_132',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], - ['locate_133',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], - ['location_134',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], - ['log_135',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], - ['logger_136',['logger',['../classclutchlog.html#acfaceb77da01503b432644a3efaee4fa',1,'clutchlog']]] + ['level_5fof_133',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], + ['levels_134',['levels',['../classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a',1,'clutchlog']]], + ['line_135',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], + ['locate_136',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], + ['location_137',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], + ['log_138',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], + ['logger_139',['logger',['../classclutchlog.html#acfaceb77da01503b432644a3efaee4fa',1,'clutchlog']]] ]; diff --git a/docs/search/functions_6.js b/docs/search/functions_6.js index 1f7d753..08fcb6f 100644 --- a/docs/search/functions_6.js +++ b/docs/search/functions_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['operator_28_29_137',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], - ['out_138',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266',1,'clutchlog::out()']]] + ['operator_28_29_140',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], + ['out_141',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266',1,'clutchlog::out()']]] ]; diff --git a/docs/search/functions_7.js b/docs/search/functions_7.js index e2c9df8..93b995b 100644 --- a/docs/search/functions_7.js +++ b/docs/search/functions_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['print_5fon_139',['print_on',['../structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#aaae6106a11eddade981172324a43df68',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a674910195e7bb14d78f0cf56c308a47e',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0',1,'clutchlog::fmt::print_on()']]] + ['print_5fon_142',['print_on',['../structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#aaae6106a11eddade981172324a43df68',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a674910195e7bb14d78f0cf56c308a47e',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0',1,'clutchlog::fmt::print_on()']]] ]; diff --git a/docs/search/functions_8.js b/docs/search/functions_8.js index e49296e..bf04779 100644 --- a/docs/search/functions_8.js +++ b/docs/search/functions_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['replace_140',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] + ['replace_143',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] ]; diff --git a/docs/search/functions_9.js b/docs/search/functions_9.js index f14f868..2fa02c1 100644 --- a/docs/search/functions_9.js +++ b/docs/search/functions_9.js @@ -1,6 +1,6 @@ var searchData= [ - ['scope_5ft_141',['scope_t',['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t']]], - ['str_142',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], - ['style_143',['style',['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] + ['scope_5ft_144',['scope_t',['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t']]], + ['str_145',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], + ['style_146',['style',['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] ]; diff --git a/docs/search/functions_a.js b/docs/search/functions_a.js index f208321..76e1c6c 100644 --- a/docs/search/functions_a.js +++ b/docs/search/functions_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['threshold_144',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]] + ['threshold_147',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]] ]; diff --git a/docs/search/groups_0.js b/docs/search/groups_0.js index 9a760b0..14df792 100644 --- a/docs/search/groups_0.js +++ b/docs/search/groups_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_195',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]] + ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_200',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]] ]; diff --git a/docs/search/groups_1.js b/docs/search/groups_1.js index 5385ac5..18748e5 100644 --- a/docs/search/groups_1.js +++ b/docs/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['default_20configuration_20management_196',['Default configuration management',['../group___default_config.html',1,'']]] + ['default_20configuration_20management_201',['Default configuration management',['../group___default_config.html',1,'']]] ]; diff --git a/docs/search/groups_2.js b/docs/search/groups_2.js index 1faaacb..af09b20 100644 --- a/docs/search/groups_2.js +++ b/docs/search/groups_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['formating_20tools_197',['Formating tools',['../group___formating.html',1,'']]] + ['formating_20tools_202',['Formating tools',['../group___formating.html',1,'']]] ]; diff --git a/docs/search/groups_3.js b/docs/search/groups_3.js index 10a7814..0ffa1f2 100644 --- a/docs/search/groups_3.js +++ b/docs/search/groups_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['high_2dlevel_20api_20macros_198',['High-level API macros',['../group___use_macros.html',1,'']]] + ['high_2dlevel_20api_20macros_203',['High-level API macros',['../group___use_macros.html',1,'']]] ]; diff --git a/docs/search/groups_4.js b/docs/search/groups_4.js index 8d5a78f..d53afb4 100644 --- a/docs/search/groups_4.js +++ b/docs/search/groups_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_199',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]] + ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_204',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]] ]; diff --git a/docs/search/groups_5.js b/docs/search/groups_5.js index e7a7c7f..ed6c036 100644 --- a/docs/search/groups_5.js +++ b/docs/search/groups_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['main_20class_200',['Main class',['../group___main.html',1,'']]] + ['main_20class_205',['Main class',['../group___main.html',1,'']]] ]; diff --git a/docs/search/pages_0.js b/docs/search/pages_0.js index ed42b7b..1be2024 100644 --- a/docs/search/pages_0.js +++ b/docs/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_201',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]] + ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_206',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]] ]; diff --git a/docs/search/related_0.js b/docs/search/related_0.js index 75eef0d..1716d1d 100644 --- a/docs/search/related_0.js +++ b/docs/search/related_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['operator_3c_3c_190',['operator<<',['../group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da',1,'clutchlog::fmt::operator<<()']]] + ['operator_3c_3c_195',['operator<<',['../group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da',1,'clutchlog::fmt::operator<<()']]] ]; diff --git a/docs/search/variables_0.js b/docs/search/variables_0.js index 3b8a1d2..1ece70e 100644 --- a/docs/search/variables_0.js +++ b/docs/search/variables_0.js @@ -1,17 +1,18 @@ var searchData= [ - ['_5ffilehash_5ffmts_145',['_filehash_fmts',['../classclutchlog.html#a2a334e009533744b52f01ef240a59e9d',1,'clutchlog']]], - ['_5fformat_5fdump_146',['_format_dump',['../classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5',1,'clutchlog']]], - ['_5fformat_5flog_147',['_format_log',['../classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e',1,'clutchlog']]], - ['_5ffunchash_5ffmts_148',['_funchash_fmts',['../classclutchlog.html#a095e1545a2085ac623e4af19364fea7f',1,'clutchlog']]], - ['_5fin_5ffile_149',['_in_file',['../classclutchlog.html#aded03528f34d9000f618419c482c5042',1,'clutchlog']]], - ['_5fin_5ffunc_150',['_in_func',['../classclutchlog.html#a130c4f12eacbd2028102838fe16b734e',1,'clutchlog']]], - ['_5fin_5fline_151',['_in_line',['../classclutchlog.html#a41757198b29862832a14472a9e5e24c6',1,'clutchlog']]], - ['_5flevel_5ffmt_152',['_level_fmt',['../classclutchlog.html#ab805ac5c33885459f9f752518a4aa735',1,'clutchlog']]], - ['_5flevel_5fshort_153',['_level_short',['../classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae',1,'clutchlog']]], - ['_5flevel_5fword_154',['_level_word',['../classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f',1,'clutchlog']]], - ['_5fout_155',['_out',['../classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167',1,'clutchlog']]], - ['_5fstage_156',['_stage',['../classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993',1,'clutchlog']]], - ['_5fstrip_5fcalls_157',['_strip_calls',['../classclutchlog.html#a356df86455409193792b6ed550dfd09e',1,'clutchlog']]], - ['_5fword_5flevel_158',['_word_level',['../classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888',1,'clutchlog']]] + ['_5ffilehash_5ffmts_148',['_filehash_fmts',['../classclutchlog.html#a2a334e009533744b52f01ef240a59e9d',1,'clutchlog']]], + ['_5ffilename_149',['_filename',['../classclutchlog.html#a0431616914dbbecb908a794f5b46dada',1,'clutchlog']]], + ['_5fformat_5fdump_150',['_format_dump',['../classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5',1,'clutchlog']]], + ['_5fformat_5flog_151',['_format_log',['../classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e',1,'clutchlog']]], + ['_5ffunchash_5ffmts_152',['_funchash_fmts',['../classclutchlog.html#a095e1545a2085ac623e4af19364fea7f',1,'clutchlog']]], + ['_5fin_5ffile_153',['_in_file',['../classclutchlog.html#aded03528f34d9000f618419c482c5042',1,'clutchlog']]], + ['_5fin_5ffunc_154',['_in_func',['../classclutchlog.html#a130c4f12eacbd2028102838fe16b734e',1,'clutchlog']]], + ['_5fin_5fline_155',['_in_line',['../classclutchlog.html#a41757198b29862832a14472a9e5e24c6',1,'clutchlog']]], + ['_5flevel_5ffmt_156',['_level_fmt',['../classclutchlog.html#ab805ac5c33885459f9f752518a4aa735',1,'clutchlog']]], + ['_5flevel_5fshort_157',['_level_short',['../classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae',1,'clutchlog']]], + ['_5flevel_5fword_158',['_level_word',['../classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f',1,'clutchlog']]], + ['_5fout_159',['_out',['../classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167',1,'clutchlog']]], + ['_5fstage_160',['_stage',['../classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993',1,'clutchlog']]], + ['_5fstrip_5fcalls_161',['_strip_calls',['../classclutchlog.html#a356df86455409193792b6ed550dfd09e',1,'clutchlog']]], + ['_5fword_5flevel_162',['_word_level',['../classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888',1,'clutchlog']]] ]; diff --git a/docs/search/variables_1.js b/docs/search/variables_1.js index 75b7fab..9c562a3 100644 --- a/docs/search/variables_1.js +++ b/docs/search/variables_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['back_159',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], - ['back_5f16m_160',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], - ['back_5f256_161',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]] + ['back_163',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], + ['back_5f16m_164',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], + ['back_5f256_165',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_2.js b/docs/search/variables_2.js index a8f7e53..51ce6d8 100644 --- a/docs/search/variables_2.js +++ b/docs/search/variables_2.js @@ -1,11 +1,11 @@ var searchData= [ - ['default_5fdepth_5fmark_162',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], - ['default_5fformat_163',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], - ['default_5fhfill_5fchar_164',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], - ['default_5fhfill_5fmax_165',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], - ['default_5fhfill_5fmin_166',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], - ['default_5fstrip_5fcalls_167',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], - ['dump_5fdefault_5fformat_168',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], - ['dump_5fdefault_5fsep_169',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] + ['default_5fdepth_5fmark_166',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], + ['default_5fformat_167',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], + ['default_5fhfill_5fchar_168',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], + ['default_5fhfill_5fmax_169',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], + ['default_5fhfill_5fmin_170',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], + ['default_5fstrip_5fcalls_171',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], + ['dump_5fdefault_5fformat_172',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], + ['dump_5fdefault_5fsep_173',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] ]; diff --git a/docs/search/variables_3.js b/docs/search/variables_3.js index 6186677..b61972b 100644 --- a/docs/search/variables_3.js +++ b/docs/search/variables_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['fore_170',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], - ['fore_5f16m_171',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], - ['fore_5f256_172',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]] + ['fore_174',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], + ['fore_5f16m_175',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], + ['fore_5f256_176',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_4.js b/docs/search/variables_4.js index 03d3f81..0968584 100644 --- a/docs/search/variables_4.js +++ b/docs/search/variables_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['index_173',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]] + ['index_177',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]] ]; diff --git a/docs/search/variables_5.js b/docs/search/variables_5.js index 794a719..d8a2af2 100644 --- a/docs/search/variables_5.js +++ b/docs/search/variables_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['matches_174',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], - ['mode_175',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] + ['matches_178',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], + ['mode_179',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_6.js b/docs/search/variables_6.js index 805e351..7fb85fc 100644 --- a/docs/search/variables_6.js +++ b/docs/search/variables_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['red_176',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]] + ['red_180',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]] ]; diff --git a/docs/search/variables_7.js b/docs/search/variables_7.js index a25bb1e..f18253a 100644 --- a/docs/search/variables_7.js +++ b/docs/search/variables_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['stage_177',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], - ['style_178',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt']]] + ['stage_181',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], + ['style_182',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_8.js b/docs/search/variables_8.js index 455079e..2260ac2 100644 --- a/docs/search/variables_8.js +++ b/docs/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['there_179',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], - ['type_180',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]] + ['there_183',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], + ['type_184',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]] ]; diff --git a/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html b/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html index 9d3e70a..7b185bf 100644 --- a/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html +++ b/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html @@ -28,7 +28,7 @@ Logo
      clutchlog -  0.15 +  0.16
      diff --git a/docs/structclutchlog_1_1fmt_1_1bg__16_m.html b/docs/structclutchlog_1_1fmt_1_1bg__16_m.html index 8c209c5..22a9e70 100644 --- a/docs/structclutchlog_1_1fmt_1_1bg__16_m.html +++ b/docs/structclutchlog_1_1fmt_1_1bg__16_m.html @@ -28,7 +28,7 @@ Logo
      clutchlog -  0.15 +  0.16
      @@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__16_m.htm

      Detailed Description

      background in 256-colors mode.

      -

      Definition at line 674 of file clutchlog.h.

      +

      Definition at line 677 of file clutchlog.h.

      @@ -232,7 +232,7 @@ enum Definition at line 686 of file clutchlog.h.

      +

      Definition at line 689 of file clutchlog.h.

      @@ -269,7 +269,7 @@ enum Definition at line 694 of file clutchlog.h.

      +

      Definition at line 697 of file clutchlog.h.

      @@ -300,7 +300,7 @@ enum
      Warning
      Only encodes "no color", whatever is passed.
      -

      Definition at line 699 of file clutchlog.h.

      +

      Definition at line 702 of file clutchlog.h.

      diff --git a/docs/structclutchlog_1_1fmt_1_1bg__256-members.html b/docs/structclutchlog_1_1fmt_1_1bg__256-members.html index 56a5825..9fab318 100644 --- a/docs/structclutchlog_1_1fmt_1_1bg__256-members.html +++ b/docs/structclutchlog_1_1fmt_1_1bg__256-members.html @@ -28,7 +28,7 @@ diff --git a/docs/structclutchlog_1_1fmt_1_1bg__256.html b/docs/structclutchlog_1_1fmt_1_1bg__256.html index b345c80..de835a5 100644 --- a/docs/structclutchlog_1_1fmt_1_1bg__256.html +++ b/docs/structclutchlog_1_1fmt_1_1bg__256.html @@ -28,7 +28,7 @@ @@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__256.html

      Detailed Description

      Background in 256-colors mode.

      -

      Definition at line 566 of file clutchlog.h.

      +

      Definition at line 569 of file clutchlog.h.

      Public Member Functions

      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      @@ -201,7 +201,7 @@ enum Definition at line 573 of file clutchlog.h.

      +

      Definition at line 576 of file clutchlog.h.

      @@ -232,7 +232,7 @@ enum
      Warning
      Only encodes "no color", whatever is passed.
      -

      Definition at line 578 of file clutchlog.h.

      +

      Definition at line 581 of file clutchlog.h.

      diff --git a/docs/structclutchlog_1_1fmt_1_1color-members.html b/docs/structclutchlog_1_1fmt_1_1color-members.html index 667e66c..8ffbea5 100644 --- a/docs/structclutchlog_1_1fmt_1_1color-members.html +++ b/docs/structclutchlog_1_1fmt_1_1color-members.html @@ -28,7 +28,7 @@ diff --git a/docs/structclutchlog_1_1fmt_1_1color.html b/docs/structclutchlog_1_1fmt_1_1color.html index f6a6ed7..b66fd1c 100644 --- a/docs/structclutchlog_1_1fmt_1_1color.html +++ b/docs/structclutchlog_1_1fmt_1_1color.html @@ -28,7 +28,7 @@ @@ -109,7 +109,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color.html',

      Detailed Description

      Interface class for colors representation.

      -

      Definition at line 480 of file clutchlog.h.

      +

      Definition at line 483 of file clutchlog.h.

      Public Member Functions

      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      @@ -194,7 +194,7 @@ std::ostream &  diff --git a/docs/structclutchlog_1_1fmt_1_1color__16_m.html b/docs/structclutchlog_1_1fmt_1_1color__16_m.html index 34c58b2..ddb2451 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__16_m.html +++ b/docs/structclutchlog_1_1fmt_1_1color__16_m.html @@ -28,7 +28,7 @@ @@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__16_m.

      Detailed Description

      Abstract base class for 16M colors objects (24-bits ANSI).

      -

      Definition at line 583 of file clutchlog.h.

      +

      Definition at line 586 of file clutchlog.h.

      Public Member Functions

      Definition at line 494 of file clutchlog.h.

      +

      Definition at line 497 of file clutchlog.h.

      diff --git a/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html b/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html index 6b0c6ad..c3d2dc3 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html +++ b/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html @@ -28,7 +28,7 @@
      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      @@ -202,7 +202,7 @@ Additional Inherited Members -

      Definition at line 592 of file clutchlog.h.

      +

      Definition at line 595 of file clutchlog.h.

      @@ -263,7 +263,7 @@ Additional Inherited Members -

      Definition at line 601 of file clutchlog.h.

      +

      Definition at line 604 of file clutchlog.h.

      @@ -311,9 +311,9 @@ Additional Inherited Members -

      Definition at line 611 of file clutchlog.h.

      +

      Definition at line 614 of file clutchlog.h.

      -

      References red.

      +

      References red.

      @@ -333,9 +333,9 @@ Additional Inherited Members

      The encoded RGB indices.

      "No color" is encoded as -1.

      -

      Definition at line 587 of file clutchlog.h.

      +

      Definition at line 590 of file clutchlog.h.

      -

      Referenced by color_16M(), is_set(), and print_on().

      +

      Referenced by color_16M(), is_set(), and print_on().

      diff --git a/docs/structclutchlog_1_1fmt_1_1color__256-members.html b/docs/structclutchlog_1_1fmt_1_1color__256-members.html index 9844daa..ad6ae0c 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__256-members.html +++ b/docs/structclutchlog_1_1fmt_1_1color__256-members.html @@ -28,7 +28,7 @@ diff --git a/docs/structclutchlog_1_1fmt_1_1color__256.html b/docs/structclutchlog_1_1fmt_1_1color__256.html index c3eeb2a..c52ec60 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__256.html +++ b/docs/structclutchlog_1_1fmt_1_1color__256.html @@ -28,7 +28,7 @@ @@ -114,7 +114,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__256.h

      Detailed Description

      Abstract base class for 256 colors objects (8-bits ANSI).

      -

      Definition at line 519 of file clutchlog.h.

      +

      Definition at line 522 of file clutchlog.h.

      Public Member Functions

      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      @@ -193,7 +193,7 @@ Additional Inherited Members -

      Definition at line 528 of file clutchlog.h.

      +

      Definition at line 531 of file clutchlog.h.

      @@ -240,7 +240,7 @@ Additional Inherited Members -

      Definition at line 535 of file clutchlog.h.

      +

      Definition at line 538 of file clutchlog.h.

      @@ -260,9 +260,9 @@ Additional Inherited Members

      The encoded color index in 4-bits ANSI.

      "No color" is encoded as -1.

      -

      Definition at line 523 of file clutchlog.h.

      +

      Definition at line 526 of file clutchlog.h.

      -

      Referenced by is_set(), and print_on().

      +

      Referenced by is_set(), and print_on().

      diff --git a/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html b/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html index 1fc68ff..a2dad5d 100644 --- a/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html +++ b/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html @@ -28,7 +28,7 @@ diff --git a/docs/structclutchlog_1_1fmt_1_1fg__16_m.html b/docs/structclutchlog_1_1fmt_1_1fg__16_m.html index ffdfbe2..a23ddfe 100644 --- a/docs/structclutchlog_1_1fmt_1_1fg__16_m.html +++ b/docs/structclutchlog_1_1fmt_1_1fg__16_m.html @@ -28,7 +28,7 @@ @@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__16_m.htm

      Detailed Description

      Foreground in 256-colors mode.

      -

      Definition at line 644 of file clutchlog.h.

      +

      Definition at line 647 of file clutchlog.h.

      Public Member Functions

      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      @@ -232,7 +232,7 @@ enum Definition at line 656 of file clutchlog.h.

      +

      Definition at line 659 of file clutchlog.h.

      @@ -269,7 +269,7 @@ enum Definition at line 664 of file clutchlog.h.

      +

      Definition at line 667 of file clutchlog.h.

      @@ -300,7 +300,7 @@ enum
      Warning
      Only encodes "no color", whatever is passed.
      -

      Definition at line 669 of file clutchlog.h.

      +

      Definition at line 672 of file clutchlog.h.

      diff --git a/docs/structclutchlog_1_1fmt_1_1fg__256-members.html b/docs/structclutchlog_1_1fmt_1_1fg__256-members.html index bb0ad86..4a20033 100644 --- a/docs/structclutchlog_1_1fmt_1_1fg__256-members.html +++ b/docs/structclutchlog_1_1fmt_1_1fg__256-members.html @@ -28,7 +28,7 @@ diff --git a/docs/structclutchlog_1_1fmt_1_1fg__256.html b/docs/structclutchlog_1_1fmt_1_1fg__256.html index 6d68b30..1bf58d2 100644 --- a/docs/structclutchlog_1_1fmt_1_1fg__256.html +++ b/docs/structclutchlog_1_1fmt_1_1fg__256.html @@ -28,7 +28,7 @@ @@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__256.html

      Detailed Description

      Foreground in 256-colors mode.

      -

      Definition at line 549 of file clutchlog.h.

      +

      Definition at line 552 of file clutchlog.h.

      Public Member Functions

      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      @@ -201,7 +201,7 @@ enum Definition at line 556 of file clutchlog.h.

      +

      Definition at line 559 of file clutchlog.h.

      @@ -232,7 +232,7 @@ enum
      Warning
      Only encodes "no color", whatever is passed.
      -

      Definition at line 561 of file clutchlog.h.

      +

      Definition at line 564 of file clutchlog.h.

      diff --git a/docs/structclutchlog_1_1scope__t-members.html b/docs/structclutchlog_1_1scope__t-members.html index c17a89c..d690cfe 100644 --- a/docs/structclutchlog_1_1scope__t-members.html +++ b/docs/structclutchlog_1_1scope__t-members.html @@ -28,7 +28,7 @@ diff --git a/docs/structclutchlog_1_1scope__t.html b/docs/structclutchlog_1_1scope__t.html index 45885ae..c11b24b 100644 --- a/docs/structclutchlog_1_1scope__t.html +++ b/docs/structclutchlog_1_1scope__t.html @@ -28,7 +28,7 @@ @@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1scope__t.html','');

      Detailed Description

      Structure holding a location matching.

      -

      Definition at line 1118 of file clutchlog.h.

      +

      Definition at line 1128 of file clutchlog.h.

      Public Member Functions

      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      diff --git a/docs/t-assert_8cpp_source.html b/docs/t-assert_8cpp_source.html index 26ec708..1fc9176 100644 --- a/docs/t-assert_8cpp_source.html +++ b/docs/t-assert_8cpp_source.html @@ -28,7 +28,7 @@ diff --git a/docs/t-color16_m_8cpp_source.html b/docs/t-color16_m_8cpp_source.html index 13f8741..bc24383 100644 --- a/docs/t-color16_m_8cpp_source.html +++ b/docs/t-color16_m_8cpp_source.html @@ -28,7 +28,7 @@ @@ -138,9 +138,9 @@ $(document).ready(function(){initNavTree('t-color16_m_8cpp_source.html',''); ini
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:389
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      @@ -137,9 +137,9 @@ $(document).ready(function(){initNavTree('t-color256_8cpp_source.html',''); init
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:389
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      @@ -136,11 +136,11 @@ $(document).ready(function(){initNavTree('t-color_8cpp_source.html',''); initRes
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      -
      bg
      Background color codes.
      Definition: clutchlog.h:421
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      +
      bg
      Background color codes.
      Definition: clutchlog.h:424
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:389
      -
      fg
      Foreground color codes.
      Definition: clutchlog.h:400
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      +
      fg
      Foreground color codes.
      Definition: clutchlog.h:403
      @@ -191,7 +191,7 @@ $(document).ready(function(){initNavTree('t-demo-extravagant_8cpp_source.html','
      101  // << "{funchash_fmt}"
      102  << bold("{msg}")
      103  // << discreet(" {hfill} ")
      -
      104  << "{depth_fmt} {hfill} "
      +
      104  << "{funchash_fmt} <-{hfill}"
      105  << fmt(dark,bg::none) << ""
      106  << fmt(fg::none,dark) << "{funchash_fmt}{func} "
      107  << fmt(lite,dark) << ""
      @@ -225,11 +225,11 @@ $(document).ready(function(){initNavTree('t-demo-extravagant_8cpp_source.html','
      level
      Available log levels.
      Definition: clutchlog.h:313
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      -
      bg
      Background color codes.
      Definition: clutchlog.h:421
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      +
      bg
      Background color codes.
      Definition: clutchlog.h:424
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:389
      -
      fg
      Foreground color codes.
      Definition: clutchlog.h:400
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      +
      fg
      Foreground color codes.
      Definition: clutchlog.h:403
      @@ -184,7 +184,7 @@ $(document).ready(function(){initNavTree('t-demo_8cpp_source.html',''); initResi
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      @@ -150,9 +150,9 @@ $(document).ready(function(){initNavTree('t-depth-delta_8cpp_source.html',''); i
      #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
      Log a message at the given level and with a given depth delta.
      Definition: clutchlog.h:81
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:389
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      diff --git a/docs/t-filename_8cpp_source.html b/docs/t-filename_8cpp_source.html new file mode 100644 index 0000000..3f00cb7 --- /dev/null +++ b/docs/t-filename_8cpp_source.html @@ -0,0 +1,136 @@ + + + + + + + +clutchlog: t-filename.cpp Source File + + + + + + + + + + + + + + +
      +
      +

      Public Member Functions

      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      clutchlog -  0.15 +  0.16
      + + + + + + +
      +
      clutchlog +  0.16 +
      +
      + + + + + + + + + +
      + +
      +
      +
      + +
      + +
      +
      + + +
      + +
      + +
      +
      +
      t-filename.cpp
      +
      +
      +
      1 #include <iostream>
      +
      2 #include <limits>
      +
      3 
      +
      4 #include "../clutchlog/clutchlog.h"
      +
      5 
      +
      6 int main(/*const int argc, char* argv[]*/)
      +
      7 {
      +
      8  auto& log = clutchlog::logger();
      +
      9  log.format("{msg}\t= {filehash_fmt}{file}\n");
      +
      10  log.threshold(clutchlog::level::xdebug);
      +
      11 
      +
      12  log.filename(clutchlog::filename::path);
      +
      13  CLUTCHLOG(note,"clutchlog::filename::path");
      +
      14 
      +
      15  log.filename(clutchlog::filename::base);
      +
      16  CLUTCHLOG(note,"clutchlog::filename::base");
      +
      17 
      +
      18  log.filename(clutchlog::filename::dir);
      +
      19  CLUTCHLOG(note,"clutchlog::filename::dir");
      +
      20 
      +
      21  log.filename(clutchlog::filename::dirbase);
      +
      22  CLUTCHLOG(note,"clutchlog::filename::dirbase");
      +
      23 
      +
      24  log.filename(clutchlog::filename::stem);
      +
      25  CLUTCHLOG(note,"clutchlog::filename::stem");
      +
      26 
      +
      27  log.filename(clutchlog::filename::dirstem);
      +
      28  CLUTCHLOG(note,"clutchlog::filename::dirstem");
      +
      29 }
      +
      30 
      +
      31 
      +
      +
      +
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      +
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      + + + + diff --git a/docs/t-fmt-constructors_8cpp_source.html b/docs/t-fmt-constructors_8cpp_source.html index c781daa..1f181a8 100644 --- a/docs/t-fmt-constructors_8cpp_source.html +++ b/docs/t-fmt-constructors_8cpp_source.html @@ -28,7 +28,7 @@ Logo
      clutchlog -  0.15 +  0.16
      @@ -135,10 +135,10 @@ $(document).ready(function(){initNavTree('t-fmt-constructors_8cpp_source.html','
      45 
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      -
      bg
      Background color codes.
      Definition: clutchlog.h:421
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:389
      -
      fg
      Foreground color codes.
      Definition: clutchlog.h:400
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      +
      bg
      Background color codes.
      Definition: clutchlog.h:424
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      +
      fg
      Foreground color codes.
      Definition: clutchlog.h:403
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:376
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      #define CLUTCHLOG(LEVEL, WHAT)
      Log a message at the given level.
      Definition: clutchlog.h:98
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:389
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,8 +84,7 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable();
      -
      -
      Class List
      +
      Class List
      Here are the classes, structs, unions and interfaces with brief descriptions:
      @@ -107,9 +106,7 @@ $(document).ready(function(){initNavTree('annotated.html',''); initResizable(); diff --git a/docs/classclutchlog-members.html b/docs/classclutchlog-members.html index f817574..8ea54b8 100644 --- a/docs/classclutchlog-members.html +++ b/docs/classclutchlog-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,92 +84,89 @@ $(document).ready(function(){initNavTree('classclutchlog.html',''); initResizabl
      -
      -
      clutchlog Member List
      +
      clutchlog Member List

      This is the complete list of members for clutchlog, including all inherited members.

      - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - +
      _filehash_fmtsclutchlogprotected
      _filenameclutchlogprotected
      _filenameclutchlogprotected
      _format_dumpclutchlogprotected
      _format_logclutchlogprotected
      _format_logclutchlogprotected
      _funchash_fmtsclutchlogprotected
      _in_fileclutchlogprotected
      _in_fileclutchlogprotected
      _in_funcclutchlogprotected
      _in_lineclutchlogprotected
      _in_lineclutchlogprotected
      _level_fmtclutchlogprotected
      _level_shortclutchlogprotected
      _level_shortclutchlogprotected
      _level_wordclutchlogprotected
      _outclutchlogprotected
      _outclutchlogprotected
      _stageclutchlogprotected
      _strip_callsclutchlogprotected
      _strip_callsclutchlogprotected
      _word_levelclutchlogprotected
      base enum value (defined in clutchlog)clutchlog
      base enum value (defined in clutchlog)clutchlog
      clutchlog(clutchlog const &)=delete (defined in clutchlog)clutchlog
      clutchlog() (defined in clutchlog)clutchloginlineprivate
      clutchlog() (defined in clutchlog)clutchloginlineprivate
      critical enum value (defined in clutchlog)clutchlog
      debug enum value (defined in clutchlog)clutchlog
      debug enum value (defined in clutchlog)clutchlog
      default_depth_markclutchloginlineprotectedstatic
      default_formatclutchloginlineprotectedstatic
      default_formatclutchloginlineprotectedstatic
      default_hfill_charclutchloginlineprotectedstatic
      default_hfill_maxclutchloginlineprotectedstatic
      default_hfill_maxclutchloginlineprotectedstatic
      default_hfill_minclutchloginlineprotectedstatic
      default_strip_callsclutchloginlineprotectedstatic
      default_strip_callsclutchloginlineprotectedstatic
      depth_styles(std::vector< fmt > styles)clutchloginline
      dir enum value (defined in clutchlog)clutchlog
      dir enum value (defined in clutchlog)clutchlog
      dirbase enum value (defined in clutchlog)clutchlog
      dirstem enum value (defined in clutchlog)clutchlog
      dirstem enum value (defined in clutchlog)clutchlog
      dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) constclutchloginline
      dump_default_formatclutchloginlineprotectedstatic
      dump_default_formatclutchloginlineprotectedstatic
      dump_default_sepclutchloginlineprotectedstatic
      error enum value (defined in clutchlog)clutchlog
      error enum value (defined in clutchlog)clutchlog
      file(std::string file)clutchloginline
      filehash_styles(std::vector< fmt > styles)clutchloginline
      filehash_styles(std::vector< fmt > styles)clutchloginline
      filename enum nameclutchlog
      filename(filename f)clutchloginline
      filename(filename f)clutchloginline
      format(const std::string &format)clutchloginline
      format() constclutchloginline
      format() constclutchloginline
      format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) constclutchloginline
      format_comment(const std::string &format)clutchloginline
      format_comment(const std::string &format)clutchloginline
      format_comment() constclutchloginline
      func(std::string func)clutchloginline
      func(std::string func)clutchloginline
      funchash_styles(std::vector< fmt > styles)clutchloginline
      info enum value (defined in clutchlog)clutchlog
      info enum value (defined in clutchlog)clutchlog
      level enum nameclutchlog
      level_of(const std::string name)clutchloginline
      levels() constclutchloginline
      line(std::string line)clutchloginline
      level_of(const std::string name)clutchloginline
      levels() constclutchloginline
      line(std::string line)clutchloginline
      locate(const level &stage, const std::string &file, const std::string &func, const size_t line) constclutchloginline
      location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")clutchloginline
      location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")clutchloginline
      log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) constclutchloginline
      logger()clutchloginlinestatic
      logger()clutchloginlinestatic
      note enum value (defined in clutchlog)clutchlog
      operator=(clutchlog const &)=delete (defined in clutchlog)clutchlog
      operator=(clutchlog const &)=delete (defined in clutchlog)clutchlog
      out(std::ostream &out)clutchloginline
      out()clutchloginline
      out()clutchloginline
      path enum value (defined in clutchlog)clutchlog
      progress enum value (defined in clutchlog)clutchlog
      progress enum value (defined in clutchlog)clutchlog
      replace(const std::string &form, const std::string &mark, const std::string &tag) constclutchloginline
      replace(const std::string &form, const std::string &mark, const size_t tag) constclutchloginline
      replace(const std::string &form, const std::string &mark, const size_t tag) constclutchloginline
      stem enum value (defined in clutchlog)clutchlog
      style(level stage, FMT... styles)clutchloginline
      style(level stage, FMT... styles)clutchloginline
      style(level stage, fmt style)clutchloginline
      style(level stage) constclutchloginline
      style(level stage) constclutchloginline
      threshold(level l)clutchloginline
      threshold(const std::string &l)clutchloginline
      threshold(const std::string &l)clutchloginline
      threshold() constclutchloginline
      warning enum value (defined in clutchlog)clutchlog
      warning enum value (defined in clutchlog)clutchlog
      xdebug enum value (defined in clutchlog)clutchlog
      diff --git a/docs/classclutchlog.html b/docs/classclutchlog.html index 31e86fb..a7e611c 100644 --- a/docs/classclutchlog.html +++ b/docs/classclutchlog.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog Class Reference @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -87,8 +87,7 @@ $(document).ready(function(){initNavTree('classclutchlog.html',''); initResizabl -
      -
      clutchlog Class Reference
      +
      clutchlog Class Reference
      @@ -97,38 +96,32 @@ $(document).ready(function(){initNavTree('classclutchlog.html',''); initResizabl

      #include <clutchlog.h>

      Detailed Description

      -

      The single class which holds everything.

      -

      This is a Singleton class.

      +

      The single class which holds everything.

      +

      This is a Singleton class.

      -

      Definition at line 187 of file clutchlog.h.

      +

      Definition at line 188 of file clutchlog.h.

      - - - + + - - + + - - + + - - + + - - + + - - - + + + @@ -138,120 +131,96 @@ std::ostream &  - - + + - - + + - - + + - - - + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - +

      +

      Public Member Functions

      Configuration accessors
      -void format (const std::string &format)
       Set the template string.
      void format (const std::string &format)
       Set the template string. More...
       
      -std::string format () const
       Get the template string.
      std::string format () const
       Get the template string. More...
       
      -void format_comment (const std::string &format)
       Set the template string for dumps.
      void format_comment (const std::string &format)
       Set the template string for dumps. More...
       
      -std::string format_comment () const
       Get the template string for dumps.
      std::string format_comment () const
       Get the template string for dumps. More...
       
      -void out (std::ostream &out)
       Set the output stream on which to print.
      void out (std::ostream &out)
       Set the output stream on which to print. More...
       
      -std::ostream & out ()
       Get the output stream on which to print.
       
      std::ostream & out ()
       Get the output stream on which to print. More...
       
      void filehash_styles (std::vector< fmt > styles)
       Set the candidate styles for value-dependant file name formatting. More...
       
      void depth_styles (std::vector< fmt > styles)
       Set the styles for value-dependant depth formatting. More...
       
      -void threshold (level l)
       Set the log level (below which logs are not printed) with an identifier.
      void threshold (level l)
       Set the log level (below which logs are not printed) with an identifier. More...
       
      -void threshold (const std::string &l)
       Set the log level (below which logs are not printed) with a string.
      void threshold (const std::string &l)
       Set the log level (below which logs are not printed) with a string. More...
       
      -level threshold () const
       Get the log level below which logs are not printed.
      level threshold () const
       Get the log level below which logs are not printed. More...
       
      -const std::map< std::string, level > & levels () const
       Get the map of available log levels string representations toward their identifier. *‍/.
       
      const std::map< std::string, level > & levels () const
       Get the map of available log levels string representations toward their identifier. *‍/. More...
       
      level level_of (const std::string name)
       Return the log level tag corresponding to the given pre-configured name. More...
       
      -void file (std::string file)
       Set the regular expression filtering the file location.
      void file (std::string file)
       Set the regular expression filtering the file location. More...
       
      -void func (std::string func)
       Set the regular expression filtering the function location.
      void func (std::string func)
       Set the regular expression filtering the function location. More...
       
      -void line (std::string line)
       Set the regular expression filtering the line location.
      void line (std::string line)
       Set the regular expression filtering the line location. More...
       
      -void location (const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
       Set the regular expressions filtering the location.
      void location (const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
       Set the regular expressions filtering the location. More...
       
      template<class ... FMT>
      void style (level stage, FMT... styles)
       Set the style (color and typo) of the given log level. More...
       
      -void style (level stage, fmt style)
       Set the style (color and typo) of the given log level, passing a fmt instance.
      void style (level stage, fmt style)
       Set the style (color and typo) of the given log level, passing a fmt instance. More...
       
      -fmt style (level stage) const
       Get the configured fmt instance of the given log level.
      fmt style (level stage) const
       Get the configured fmt instance of the given log level. More...
       
      -void filename (filename f)
       Sets the file naming scheme. *‍/.
      void filename (filename f)
       Sets the file naming scheme. *‍/. More...
       
      Low-level API
      -scope_t locate (const level &stage, const std::string &file, const std::string &func, const size_t line) const
       Gather information on the current location of the call.
      scope_t locate (const level &stage, const std::string &file, const std::string &func, const size_t line) const
       Gather information on the current location of the call. More...
       
      std::string replace (const std::string &form, const std::string &mark, const std::string &tag) const
       Replace mark by tag in form. More...
       
      -std::string replace (const std::string &form, const std::string &mark, const size_t tag) const
       Replace mark by tag in form, converting tag to its string representation first.
      std::string replace (const std::string &form, const std::string &mark, const size_t tag) const
       Replace mark by tag in form, converting tag to its string representation first. More...
       
      -std::string format (std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
       Substitute all tags in the format string with the corresponding information and apply the style corresponding to the log level.
      std::string format (std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
       Substitute all tags in the format string with the corresponding information and apply the style corresponding to the log level. More...
       
      -void log (const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
       Print a log message IF the location matches the given one.
      void log (const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
       Print a log message IF the location matches the given one. More...
       
      -template<class In >
      template<class In >
      void dump (const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
       Dump a serializable container after a comment line with log information.
       Dump a serializable container after a comment line with log information. More...
       
      - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +

      +

      Static Protected Attributes

      Default configuration members
      -static std::string default_format = CLUTCHLOG_DEFAULT_FORMAT
       Default format of the messages.
      static std::string default_format = CLUTCHLOG_DEFAULT_FORMAT
       Default format of the messages. More...
       
      -static std::string dump_default_format = CLUTCHDUMP_DEFAULT_FORMAT
       Default format of the comment line in file dump.
      static std::string dump_default_format = CLUTCHDUMP_DEFAULT_FORMAT
       Default format of the comment line in file dump. More...
       
      -static std::string dump_default_sep = CLUTCHDUMP_DEFAULT_SEP
       Default item separator for dump.
      static std::string dump_default_sep = CLUTCHDUMP_DEFAULT_SEP
       Default item separator for dump. More...
       
      -static std::string default_depth_mark = CLUTCHLOG_DEFAULT_DEPTH_MARK
       Default mark for stack depth.
      static std::string default_depth_mark = CLUTCHLOG_DEFAULT_DEPTH_MARK
       Default mark for stack depth. More...
       
      -static unsigned int default_strip_calls = CLUTCHLOG_STRIP_CALLS
       Number of call stack levels to remove from depth display by default.
      static unsigned int default_strip_calls = CLUTCHLOG_STRIP_CALLS
       Number of call stack levels to remove from depth display by default. More...
       
      -static char default_hfill_char = CLUTCHLOG_DEFAULT_HFILL_MARK
       Default character used as a filling for right-align the right part of messages with "{hfill}".
      static char default_hfill_char = CLUTCHLOG_DEFAULT_HFILL_MARK
       Default character used as a filling for right-align the right part of messages with "{hfill}". More...
       
      -static size_t default_hfill_max = CLUTCHLOG_DEFAULT_HFILL_MAX
       Default maximum width (number of characters) for which to fill for right-aligning the right part of messages (using "{hfill}").
      static size_t default_hfill_max = CLUTCHLOG_DEFAULT_HFILL_MAX
       Default maximum width (number of characters) for which to fill for right-aligning the right part of messages (using "{hfill}"). More...
       
      -static size_t default_hfill_min = CLUTCHLOG_DEFAULT_HFILL_MIN
       Default minimum width (number of characters) at which to fill for right-aligning the right part of messages (using "{hfill}").
      static size_t default_hfill_min = CLUTCHLOG_DEFAULT_HFILL_MIN
       Default minimum width (number of characters) at which to fill for right-aligning the right part of messages (using "{hfill}"). More...
       
      - @@ -260,113 +229,95 @@ Classes

      +

      Classes

      class  fmt
       Color and style formatter for ANSI terminal escape sequences. More...
       Structure holding a location matching. More...
       
      - - + - + - - + - - - + + +

      -High-level API

      enum  level {
      -  critical =0, -error =1, -warning =2, -progress =3, -
      -  note =4, -info =5, -debug =6, -xdebug =7 +

      High-level API

      enum  level {
      +  critical =0 +, error =1 +, warning =2 +, progress =3 +,
      +  note =4 +, info =5 +, debug =6 +, xdebug =7
      }
       Available log levels.
       Available log levels. More...
       
      enum  filename {
      -  path, -base, -dir, -dirbase, -
      -  stem, -dirstem +
      enum  filename {
      +  path +, base +, dir +, dirbase +,
      +  stem +, dirstem
      }
       Available filename rendering methods.
       Available filename rendering methods. More...
       
      static clutchloglogger ()
       Get the logger instance. More...
       
      static clutchloglogger ()
       Get the logger instance. More...
       
      - - - + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - +

      -Internal details

      -size_t _strip_calls
       Current number of call stack levels to remove from depth display.

      Internal details

      size_t _strip_calls
       Current number of call stack levels to remove from depth display. More...
       
      -const std::map< level, std::string > _level_word
       Dictionary of level identifier to their string representation.
      const std::map< level, std::string > _level_word
       Dictionary of level identifier to their string representation. More...
       
      -std::map< std::string, level_word_level
       Dictionary of level string to their identifier.
      std::map< std::string, level_word_level
       Dictionary of level string to their identifier. More...
       
      -std::map< level, std::string > _level_short
       dictionary of level identifier to their 4-letters representation.
      std::map< level, std::string > _level_short
       dictionary of level identifier to their 4-letters representation. More...
       
      -std::map< level, fmt_level_fmt
       Dictionary of level identifier to their format.
      std::map< level, fmt_level_fmt
       Dictionary of level identifier to their format. More...
       
      -std::string _format_log
       Current format of the standard output.
      std::string _format_log
       Current format of the standard output. More...
       
      -std::string _format_dump
       Current format of the file output.
      std::string _format_dump
       Current format of the file output. More...
       
      -std::ostream * _out
       Standard output.
      std::ostream * _out
       Standard output. More...
       
      -level _stage
       Current log level.
      level _stage
       Current log level. More...
       
      -std::regex _in_file
       Current file location filter.
      std::regex _in_file
       Current file location filter. More...
       
      -std::regex _in_func
       Current function location filter.
      std::regex _in_func
       Current function location filter. More...
       
      -std::regex _in_line
       Current line location filter.
      std::regex _in_line
       Current line location filter. More...
       
      -std::vector< fmt_filehash_fmts
       List of candidate format objects for value-dependant file name styling.
      std::vector< fmt_filehash_fmts
       List of candidate format objects for value-dependant file name styling. More...
       
      -std::vector< fmt_funchash_fmts
       List of candidate format objects for value-dependant function name styling.
      std::vector< fmt_funchash_fmts
       List of candidate format objects for value-dependant function name styling. More...
       
      -filename _filename
       Filename rendering method.
      filename _filename
       Filename rendering method. More...
       
      +
       clutchlog (clutchlog const &)=delete
       
      +
      void operator= (clutchlog const &)=delete
       
      clutchlog ()
       clutchlog ()
       
      -

      Member Function Documentation

      - -

      ◆ logger()

      +

      Constructor & Destructor Documentation

      + +

      ◆ clutchlog()

      +

      Member Function Documentation

      + +

      ◆ logger()

      + +
      +
      + + +
      + + + @@ -389,13 +368,210 @@ void  + + +
      static clutchlog & clutchlog::logger ( ) operator= (

      Get the logger instance.

      -
      +
      +
      void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
      Print a log message IF the location matches the given one.
      Definition: clutchlog.h:1413
      +
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:307
      -

      Definition at line 306 of file clutchlog.h.

      +

      Definition at line 307 of file clutchlog.h.

      - + +

      ◆ format() [1/3]

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::format (const std::string & format)
      +
      +inline
      +
      + +

      Set the template string.

      + +

      Definition at line 986 of file clutchlog.h.

      + +

      References _format_log, and format().

      + +

      Referenced by format().

      + +
      +
      + +

      ◆ format() [2/3]

      + +
      +
      + + + + + +
      + + + + + + + +
      std::string clutchlog::format () const
      +
      +inline
      +
      + +

      Get the template string.

      + +

      Definition at line 988 of file clutchlog.h.

      + +

      References _format_log.

      + +

      Referenced by dump(), format_comment(), and log().

      + +
      +
      + +

      ◆ format_comment() [1/2]

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::format_comment (const std::string & format)
      +
      +inline
      +
      + +

      Set the template string for dumps.

      + +

      Definition at line 991 of file clutchlog.h.

      + +

      References _format_dump, and format().

      + +
      +
      + +

      ◆ format_comment() [2/2]

      + +
      +
      + + + + + +
      + + + + + + + +
      std::string clutchlog::format_comment () const
      +
      +inline
      +
      + +

      Get the template string for dumps.

      + +

      Definition at line 993 of file clutchlog.h.

      + +

      References _format_dump.

      + +
      +
      + +

      ◆ out() [1/2]

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::out (std::ostream & out)
      +
      +inline
      +
      + +

      Set the output stream on which to print.

      + +

      Definition at line 996 of file clutchlog.h.

      + +

      References _out, and out().

      + +

      Referenced by out().

      + +
      +
      + +

      ◆ out() [2/2]

      + +
      +
      + + + + + +
      + + + + + + + +
      std::ostream & clutchlog::out ()
      +
      +inline
      +
      + +

      Get the output stream on which to print.

      + +

      Definition at line 998 of file clutchlog.h.

      + +

      References _out.

      + +
      +
      +

      ◆ filehash_styles()

      @@ -420,16 +596,16 @@ void 
      operator= ( - +

      ◆ funchash_styles()

      @@ -454,16 +630,16 @@ void 
      operator= ( - +

      ◆ depth_styles()

      @@ -488,14 +664,140 @@ void 
      operator= ( - + +

      ◆ threshold() [1/3]

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::threshold (level l)
      +
      +inline
      +
      + +

      Set the log level (below which logs are not printed) with an identifier.

      + +

      Definition at line 1067 of file clutchlog.h.

      + +

      References _stage.

      + +
      +
      + +

      ◆ threshold() [2/3]

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::threshold (const std::string & l)
      +
      +inline
      +
      + +

      Set the log level (below which logs are not printed) with a string.

      + +

      Definition at line 1069 of file clutchlog.h.

      + +

      References _stage, and level_of().

      + +
      +
      + +

      ◆ threshold() [3/3]

      + +
      +
      + + + + + +
      + + + + + + + +
      level clutchlog::threshold () const
      +
      +inline
      +
      + +

      Get the log level below which logs are not printed.

      + +

      Definition at line 1071 of file clutchlog.h.

      + +

      References _stage.

      + +
      +
      + +

      ◆ levels()

      + +
      +
      + + + + + +
      + + + + + + + +
      const std::map< std::string, level > & clutchlog::levels () const
      +
      +inline
      +
      + +

      Get the map of available log levels string representations toward their identifier. *‍/.

      + +

      Definition at line 1073 of file clutchlog.h.

      + +

      References _word_level.

      + +
      +
      +

      ◆ level_of()

      @@ -522,16 +824,166 @@ void 
      operator= (Return the log level tag corresponding to the given pre-configured name.

      Note
      This is case sensitive, see the pre-configured _level_word.
      -

      Definition at line 1077 of file clutchlog.h.

      +

      Definition at line 1079 of file clutchlog.h.

      -

      References _word_level.

      +

      References _word_level.

      -

      Referenced by threshold().

      +

      Referenced by threshold().

      - -

      ◆ style()

      + +

      ◆ file()

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::file (std::string file)
      +
      +inline
      +
      + +

      Set the regular expression filtering the file location.

      + +

      Definition at line 1090 of file clutchlog.h.

      + +

      References _in_file, and file().

      + +

      Referenced by dump(), file(), format(), locate(), location(), and log().

      + +
      +
      + +

      ◆ func()

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::func (std::string func)
      +
      +inline
      +
      + +

      Set the regular expression filtering the function location.

      + +

      Definition at line 1092 of file clutchlog.h.

      + +

      References _in_func, and func().

      + +

      Referenced by dump(), format(), func(), locate(), location(), and log().

      + +
      +
      + +

      ◆ line()

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::line (std::string line)
      +
      +inline
      +
      + +

      Set the regular expression filtering the line location.

      + +

      Definition at line 1094 of file clutchlog.h.

      + +

      References _in_line, and line().

      + +

      Referenced by dump(), format(), line(), locate(), location(), and log().

      + +
      +
      + +

      ◆ location()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      void clutchlog::location (const std::string & in_file,
      const std::string & in_function = ".*",
      const std::string & in_line = ".*" 
      )
      +
      +inline
      +
      + +

      Set the regular expressions filtering the location.

      + +

      Definition at line 1097 of file clutchlog.h.

      + +

      References file(), func(), and line().

      + +
      +
      + +

      ◆ style() [1/3]

      @@ -567,18 +1019,182 @@ template<class ... FMT>

      Set the style (color and typo) of the given log level.

      -

      This version accept style arguments as if they were passed to clutchlog::fmt.

      +

      This version accept style arguments as if they were passed to clutchlog::fmt.

      -

      Definition at line 1111 of file clutchlog.h.

      +

      Definition at line 1113 of file clutchlog.h.

      -

      References style().

      +

      References style().

      -

      Referenced by style().

      +

      Referenced by style().

      - -

      ◆ replace()

      + +

      ◆ style() [2/3]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      void clutchlog::style (level stage,
      fmt style 
      )
      +
      +inline
      +
      + +

      Set the style (color and typo) of the given log level, passing a fmt instance.

      + +

      Definition at line 1115 of file clutchlog.h.

      + +

      References _level_fmt, and style().

      + +

      Referenced by style().

      + +
      +
      + +

      ◆ style() [3/3]

      + +
      +
      + + + + + +
      + + + + + + + + +
      fmt clutchlog::style (level stage) const
      +
      +inline
      +
      + +

      Get the configured fmt instance of the given log level.

      + +

      Definition at line 1117 of file clutchlog.h.

      + +

      References _level_fmt.

      + +
      +
      + +

      ◆ filename()

      + +
      +
      + + + + + +
      + + + + + + + + +
      void clutchlog::filename (filename f)
      +
      +inline
      +
      + +

      Sets the file naming scheme. *‍/.

      + +

      Definition at line 1120 of file clutchlog.h.

      + +

      References _filename.

      + +
      +
      + +

      ◆ locate()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      scope_t clutchlog::locate (const levelstage,
      const std::string & file,
      const std::string & func,
      const size_t line 
      ) const
      +
      +inline
      +
      + +

      Gather information on the current location of the call.

      + +

      Definition at line 1154 of file clutchlog.h.

      + +

      References _in_file, _in_func, _in_line, _stage, _strip_calls, file(), func(), line(), clutchlog::scope_t::matches, clutchlog::scope_t::stage, and clutchlog::scope_t::there.

      + +

      Referenced by dump(), and log().

      + +
      +
      + +

      ◆ replace() [1/2]

      @@ -618,12 +1234,938 @@ template<class ... FMT>

      Replace mark by tag in form.

      -
      log.replace("{greet} {world}", "\\{greet\\}", "hello");
      +
      log.replace("{greet} {world}", "\\{greet\\}", "hello");
      // returns "hello {world}"
      -

      Definition at line 1203 of file clutchlog.h.

      +

      Definition at line 1205 of file clutchlog.h.

      -

      Referenced by dump(), format(), and replace().

      +

      Referenced by dump(), format(), and replace().

      + +
      +
      + +

      ◆ replace() [2/2]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + +
      std::string clutchlog::replace (const std::string & form,
      const std::string & mark,
      const size_t tag 
      ) const
      +
      +inline
      +
      + +

      Replace mark by tag in form, converting tag to its string representation first.

      + +

      Definition at line 1270 of file clutchlog.h.

      + +

      References replace().

      + +
      +
      + +

      ◆ format() [3/3]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      std::string clutchlog::format (std::string row,
      const std::string & what,
      const levelstage,
      const std::string & file,
      const std::string & func,
      const size_t line 
      ) const
      +
      +inline
      +
      + +

      Substitute all tags in the format string with the corresponding information and apply the style corresponding to the log level.

      + +

      Definition at line 1281 of file clutchlog.h.

      + +

      References _filehash_fmts, _filename, _funchash_fmts, _level_fmt, _level_short, _level_word, _strip_calls, file(), func(), line(), and replace().

      + +
      +
      + +

      ◆ log()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void clutchlog::log (const levelstage,
      const std::string & what,
      const std::string & file,
      const std::string & func,
      const size_t line,
      const size_t depth_delta = 0 
      ) const
      +
      +inline
      +
      + +

      Print a log message IF the location matches the given one.

      + +

      Definition at line 1413 of file clutchlog.h.

      + +

      References _format_log, _out, file(), format(), func(), line(), locate(), and clutchlog::scope_t::matches.

      + +
      +
      + +

      ◆ dump()

      + +
      +
      +
      +template<class In >
      + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      void clutchlog::dump (const levelstage,
      const In container_begin,
      const In container_end,
      const std::string & file,
      const std::string & func,
      const size_t line,
      const std::string & filename_template = "dump_{n}.dat",
      const std::string sep = dump_default_sep 
      ) const
      +
      +inline
      +
      + +

      Dump a serializable container after a comment line with log information.

      + +

      Definition at line 1438 of file clutchlog.h.

      + +

      References _format_dump, file(), format(), func(), line(), locate(), clutchlog::scope_t::matches, and replace().

      + +
      +
      +

      Member Data Documentation

      + +

      ◆ default_format

      + +
      +
      + + + + + +
      + + + + +
      std::string clutchlog::default_format = CLUTCHLOG_DEFAULT_FORMAT
      +
      +inlinestaticprotected
      +
      + +

      Default format of the messages.

      + +

      Definition at line 224 of file clutchlog.h.

      + +
      +
      + +

      ◆ dump_default_format

      + +
      +
      + + + + + +
      + + + + +
      std::string clutchlog::dump_default_format = CLUTCHDUMP_DEFAULT_FORMAT
      +
      +inlinestaticprotected
      +
      + +

      Default format of the comment line in file dump.

      + +

      Definition at line 246 of file clutchlog.h.

      + +
      +
      + +

      ◆ dump_default_sep

      + +
      +
      + + + + + +
      + + + + +
      std::string clutchlog::dump_default_sep = CLUTCHDUMP_DEFAULT_SEP
      +
      +inlinestaticprotected
      +
      + +

      Default item separator for dump.

      + +

      Definition at line 253 of file clutchlog.h.

      + +
      +
      + +

      ◆ default_depth_mark

      + +
      +
      + + + + + +
      + + + + +
      std::string clutchlog::default_depth_mark = CLUTCHLOG_DEFAULT_DEPTH_MARK
      +
      +inlinestaticprotected
      +
      + +

      Default mark for stack depth.

      + +

      Definition at line 260 of file clutchlog.h.

      + +
      +
      + +

      ◆ default_strip_calls

      + +
      +
      + + + + + +
      + + + + +
      unsigned int clutchlog::default_strip_calls = CLUTCHLOG_STRIP_CALLS
      +
      +inlinestaticprotected
      +
      + +

      Number of call stack levels to remove from depth display by default.

      + +

      Definition at line 267 of file clutchlog.h.

      + +
      +
      + +

      ◆ default_hfill_char

      + +
      +
      + + + + + +
      + + + + +
      char clutchlog::default_hfill_char = CLUTCHLOG_DEFAULT_HFILL_MARK
      +
      +inlinestaticprotected
      +
      + +

      Default character used as a filling for right-align the right part of messages with "{hfill}".

      + +

      Definition at line 274 of file clutchlog.h.

      + +
      +
      + +

      ◆ default_hfill_max

      + +
      +
      + + + + + +
      + + + + +
      size_t clutchlog::default_hfill_max = CLUTCHLOG_DEFAULT_HFILL_MAX
      +
      +inlinestaticprotected
      +
      + +

      Default maximum width (number of characters) for which to fill for right-aligning the right part of messages (using "{hfill}").

      + +

      Definition at line 286 of file clutchlog.h.

      + +
      +
      + +

      ◆ default_hfill_min

      + +
      +
      + + + + + +
      + + + + +
      size_t clutchlog::default_hfill_min = CLUTCHLOG_DEFAULT_HFILL_MIN
      +
      +inlinestaticprotected
      +
      + +

      Default minimum width (number of characters) at which to fill for right-aligning the right part of messages (using "{hfill}").

      + +

      Definition at line 288 of file clutchlog.h.

      + +
      +
      + +

      ◆ _strip_calls

      + +
      +
      + + + + + +
      + + + + +
      size_t clutchlog::_strip_calls
      +
      +protected
      +
      + +

      Current number of call stack levels to remove from depth display.

      + +

      Definition at line 919 of file clutchlog.h.

      + +

      Referenced by format(), and locate().

      + +
      +
      + +

      ◆ _level_word

      + +
      +
      + + + + + +
      + + + + +
      const std::map<level,std::string> clutchlog::_level_word
      +
      +protected
      +
      + +

      Dictionary of level identifier to their string representation.

      + +

      Definition at line 921 of file clutchlog.h.

      + +

      Referenced by format().

      + +
      +
      + +

      ◆ _word_level

      + +
      +
      + + + + + +
      + + + + +
      std::map<std::string,level> clutchlog::_word_level
      +
      +protected
      +
      + +

      Dictionary of level string to their identifier.

      + +

      Definition at line 923 of file clutchlog.h.

      + +

      Referenced by level_of(), and levels().

      + +
      +
      + +

      ◆ _level_short

      + +
      +
      + + + + + +
      + + + + +
      std::map<level,std::string> clutchlog::_level_short
      +
      +protected
      +
      + +

      dictionary of level identifier to their 4-letters representation.

      + +

      Definition at line 925 of file clutchlog.h.

      + +

      Referenced by format().

      + +
      +
      + +

      ◆ _level_fmt

      + +
      +
      + + + + + +
      + + + + +
      std::map<level,fmt> clutchlog::_level_fmt
      +
      +protected
      +
      + +

      Dictionary of level identifier to their format.

      + +

      Definition at line 927 of file clutchlog.h.

      + +

      Referenced by format(), and style().

      + +
      +
      + +

      ◆ _format_log

      + +
      +
      + + + + + +
      + + + + +
      std::string clutchlog::_format_log
      +
      +protected
      +
      + +

      Current format of the standard output.

      + +

      Definition at line 929 of file clutchlog.h.

      + +

      Referenced by format(), and log().

      + +
      +
      + +

      ◆ _format_dump

      + +
      +
      + + + + + +
      + + + + +
      std::string clutchlog::_format_dump
      +
      +protected
      +
      + +

      Current format of the file output.

      + +

      Definition at line 931 of file clutchlog.h.

      + +

      Referenced by dump(), and format_comment().

      + +
      +
      + +

      ◆ _out

      + +
      +
      + + + + + +
      + + + + +
      std::ostream* clutchlog::_out
      +
      +protected
      +
      + +

      Standard output.

      + +

      Definition at line 943 of file clutchlog.h.

      + +

      Referenced by log(), and out().

      + +
      +
      + +

      ◆ _stage

      + +
      +
      + + + + + +
      + + + + +
      level clutchlog::_stage
      +
      +protected
      +
      + +

      Current log level.

      + +

      Definition at line 951 of file clutchlog.h.

      + +

      Referenced by locate(), and threshold().

      + +
      +
      + +

      ◆ _in_file

      + +
      +
      + + + + + +
      + + + + +
      std::regex clutchlog::_in_file
      +
      +protected
      +
      + +

      Current file location filter.

      + +

      Definition at line 953 of file clutchlog.h.

      + +

      Referenced by file(), and locate().

      + +
      +
      + +

      ◆ _in_func

      + +
      +
      + + + + + +
      + + + + +
      std::regex clutchlog::_in_func
      +
      +protected
      +
      + +

      Current function location filter.

      + +

      Definition at line 955 of file clutchlog.h.

      + +

      Referenced by func(), and locate().

      + +
      +
      + +

      ◆ _in_line

      + +
      +
      + + + + + +
      + + + + +
      std::regex clutchlog::_in_line
      +
      +protected
      +
      + +

      Current line location filter.

      + +

      Definition at line 957 of file clutchlog.h.

      + +

      Referenced by line(), and locate().

      + +
      +
      + +

      ◆ _filehash_fmts

      + +
      +
      + + + + + +
      + + + + +
      std::vector<fmt> clutchlog::_filehash_fmts
      +
      +protected
      +
      + +

      List of candidate format objects for value-dependant file name styling.

      + +

      Definition at line 960 of file clutchlog.h.

      + +

      Referenced by filehash_styles(), and format().

      + +
      +
      + +

      ◆ _funchash_fmts

      + +
      +
      + + + + + +
      + + + + +
      std::vector<fmt> clutchlog::_funchash_fmts
      +
      +protected
      +
      + +

      List of candidate format objects for value-dependant function name styling.

      + +

      Definition at line 962 of file clutchlog.h.

      + +

      Referenced by format(), and funchash_styles().

      + +
      +
      + +

      ◆ _filename

      + +
      +
      + + + + + +
      + + + + +
      filename clutchlog::_filename
      +
      +protected
      +
      + +

      Filename rendering method.

      + +

      Definition at line 977 of file clutchlog.h.

      + +

      Referenced by filename(), and format().

      + +
      +
      +

      Member Enumeration Documentation

      + +

      ◆ level

      + +
      +
      + + + + +
      enum clutchlog::level
      +
      + +

      Available log levels.

      + +

      Definition at line 314 of file clutchlog.h.

      + +
      +
      + +

      ◆ filename

      + +
      +
      + + + + +
      enum clutchlog::filename
      +
      + +

      Available filename rendering methods.

      + +

      Definition at line 317 of file clutchlog.h.

      @@ -632,15 +2174,11 @@ template<class ... FMT> -
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
      Print a log message IF the location matches the given one.
      Definition: clutchlog.h:1412
      diff --git a/docs/classclutchlog.js b/docs/classclutchlog.js index b0b820d..46fd783 100644 --- a/docs/classclutchlog.js +++ b/docs/classclutchlog.js @@ -1,23 +1,20 @@ var classclutchlog = [ [ "scope_t", "structclutchlog_1_1scope__t.html", "structclutchlog_1_1scope__t" ], - [ "clutchlog", "classclutchlog.html#a0906d74275cedcd403da94879764815e", null ], - [ "clutchlog", "classclutchlog.html#a03b145e36f15435a640bb5a885d9f642", null ], - [ "logger", "classclutchlog.html#acfaceb77da01503b432644a3efaee4fa", null ], - [ "operator=", "classclutchlog.html#aef653a9744a72a889ca8163269bb781e", null ], + [ "logger", "classclutchlog.html#a6e2a5e98fa9f722d90ba6515895543ac", null ], [ "format", "classclutchlog.html#a656c277e074b64728cca871f2b484d1c", null ], [ "format", "classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80", null ], [ "format_comment", "classclutchlog.html#a2144abe4ec6f630126b6490908b5f924", null ], [ "format_comment", "classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5", null ], [ "out", "classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d", null ], - [ "out", "classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266", null ], + [ "out", "classclutchlog.html#ab7773f031a00a05b8c83c1936406cb98", null ], [ "filehash_styles", "classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf", null ], [ "funchash_styles", "classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416", null ], [ "depth_styles", "classclutchlog.html#a08310b92e86687349e70f56f9ac1d656", null ], [ "threshold", "classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4", null ], [ "threshold", "classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9", null ], [ "threshold", "classclutchlog.html#ab45287cc9c14217904a13aff49573732", null ], - [ "levels", "classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a", null ], + [ "levels", "classclutchlog.html#a8d206443dea964f77965450a83693d98", null ], [ "level_of", "classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd", null ], [ "file", "classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c", null ], [ "func", "classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447", null ], diff --git a/docs/classclutchlog_1_1fmt-members.html b/docs/classclutchlog_1_1fmt-members.html index 9e3d430..4fb22b6 100644 --- a/docs/classclutchlog_1_1fmt-members.html +++ b/docs/classclutchlog_1_1fmt-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,58 +84,56 @@ $(document).ready(function(){initNavTree('classclutchlog_1_1fmt.html',''); initR
      -
      -
      clutchlog::fmt Member List
      +
      clutchlog::fmt Member List

      This is the complete list of members for clutchlog::fmt, including all inherited members.

      - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ansi enum nameclutchlog::fmt
      backclutchlog::fmt
      backclutchlog::fmt
      back_16Mclutchlog::fmtprotected
      back_256clutchlog::fmtprotected
      back_256clutchlog::fmtprotected
      bg enum nameclutchlog::fmt
      fg enum nameclutchlog::fmt
      fg enum nameclutchlog::fmt
      fmt()clutchlog::fmtinline
      fmt(fg f, bg b=bg::none, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(fg f, typo s, bg b=bg::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(bg b, fg f=fg::none, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(bg b, typo s, fg f=fg::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(typo s, fg f=fg::none, bg b=bg::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(typo s, bg b, fg f=fg::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(fg_256 f, bg_256 b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(fg_256 f, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(fg, bg_256 b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(const short fr, const short fg, const short fb, const short gr, const short gg, const short gb, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(fg, const short gr, const short gg, const short gb, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(const short fr, const short fg, const short fb, bg, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(const short fr, const short fg, const short fb, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(const std::string &f, const std::string &b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(fg, const std::string &b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(const std::string &f, bg, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      fmt(const std::string &f, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinline
      foreclutchlog::fmt
      fore_16Mclutchlog::fmtprotected
      fore_256clutchlog::fmtprotected
      hash(const std::string &str, const std::vector< fmt > domain={}) (defined in clutchlog::fmt)clutchlog::fmtinlinestatic
      modeclutchlog::fmt
      operator()(const std::string &msg) constclutchlog::fmtinline
      operator<<(std::ostream &os, const std::tuple< fg, bg, typo > &fbs)clutchlog::fmtfriend
      operator<<(std::ostream &os, const typo &s)clutchlog::fmtfriend
      operator<<(std::ostream &os, const fmt &fmt)clutchlog::fmtfriend
      print_on(std::ostream &os) constclutchlog::fmtinlineprotected
      str() constclutchlog::fmtinline
      styleclutchlog::fmt
      typo enum nameclutchlog::fmt
      fmt(fg f, bg b=bg::none, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(fg f, typo s, bg b=bg::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(bg b, fg f=fg::none, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(bg b, typo s, fg f=fg::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(typo s, fg f=fg::none, bg b=bg::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(typo s, bg b, fg f=fg::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const short f, const short b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const short f, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(fg, const short b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const short f, bg, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const short fr, const short fg, const short fb, const short gr, const short gg, const short gb, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(fg, const short gr, const short gg, const short gb, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const short fr, const short fg, const short fb, bg, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const short fr, const short fg, const short fb, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const std::string &f, const std::string &b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(fg, const std::string &b, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const std::string &f, bg, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      fmt(const std::string &f, typo s=typo::none) (defined in clutchlog::fmt)clutchlog::fmtinlineexplicit
      foreclutchlog::fmt
      fore_16Mclutchlog::fmtprotected
      fore_256clutchlog::fmtprotected
      hash(const std::string &str, const std::vector< fmt > domain={}) (defined in clutchlog::fmt)clutchlog::fmtinlinestatic
      modeclutchlog::fmt
      operator()(const std::string &msg) constclutchlog::fmtinline
      operator<<clutchlog::fmtfriend
      operator<<clutchlog::fmtfriend
      operator<<clutchlog::fmtfriend
      print_on(std::ostream &os) constclutchlog::fmtinlineprotected
      str() constclutchlog::fmtinline
      styleclutchlog::fmt
      typo enum nameclutchlog::fmt
      diff --git a/docs/classclutchlog_1_1fmt.html b/docs/classclutchlog_1_1fmt.html index 55ecbbd..f949dfc 100644 --- a/docs/classclutchlog_1_1fmt.html +++ b/docs/classclutchlog_1_1fmt.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt Class Reference @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -94,8 +94,7 @@ $(document).ready(function(){initNavTree('classclutchlog_1_1fmt.html',''); initR Public Types | Friends | List of all members -
      -
      clutchlog::fmt Class Reference
      +
      clutchlog::fmt Class Reference
      @@ -111,14 +110,14 @@ $(document).ready(function(){initNavTree('classclutchlog_1_1fmt.html',''); initR
      [legend]

      Detailed Description

      -

      Color and style formatter for ANSI terminal escape sequences.

      -

      The formatter supports typographic "styles" and colors. Typographic styles are available as named tag in fmt::typo.

      -

      The formatter supports the three ANSI modes, which are automatically selected depending the argument types:

        +

        Color and style formatter for ANSI terminal escape sequences.

        +

        The formatter supports typographic "styles" and colors. Typographic styles are available as named tag in fmt::typo.

        +

        The formatter supports the three ANSI modes, which are automatically selected depending the argument types:

        • 16 colors (using named tags),
        • 256 colors (using integers),
        • 16 millions ("true") colors (using RGB integer triplets or web hex strings).
        -

        For 16-colors mode, colors are named tag in:

          +

          For 16-colors mode, colors are named tag in:

          @@ -154,128 +153,109 @@ $(document).ready(function(){initNavTree('classclutchlog_1_1fmt.html',''); initR
          All styles may not be supported by a given terminal/operating system.
          -

          Definition at line 379 of file clutchlog.h.

          +

          Definition at line 380 of file clutchlog.h.

        - - - + + - - + + - + - + - + - + - + - + - - - - - - + + + + + + + + - + - + - + - + - + - + - + - +

        +

        Public Member Functions

        fmt ()
         Empty constructor, only useful for a no-op formatter.
         fmt ()
         Empty constructor, only useful for a no-op formatter. More...
         
        std::string operator() (const std::string &msg) const
         Format the given string with the currently encoded format. More...
         
        -std::string str () const
         Return the formatting code as a string.
        std::string str () const
         Return the formatting code as a string. More...
         
        All combination of 16-colors mode constructors with different parameters orders.
        fmt (fg f, bg b=bg::none, typo s=typo::none)
         fmt (fg f, bg b=bg::none, typo s=typo::none)
         
        fmt (fg f, typo s, bg b=bg::none)
         fmt (fg f, typo s, bg b=bg::none)
         
        fmt (bg b, fg f=fg::none, typo s=typo::none)
         fmt (bg b, fg f=fg::none, typo s=typo::none)
         
        fmt (bg b, typo s, fg f=fg::none)
         fmt (bg b, typo s, fg f=fg::none)
         
        fmt (typo s, fg f=fg::none, bg b=bg::none)
         fmt (typo s, fg f=fg::none, bg b=bg::none)
         
        fmt (typo s, bg b, fg f=fg::none)
         fmt (typo s, bg b, fg f=fg::none)
         
        All combination of 256-colors mode constructors with different parameters orders.
        fmt (fg_256 f, bg_256 b, typo s=typo::none)
         
        fmt (fg_256 f, typo s=typo::none)
         
        fmt (fg, bg_256 b, typo s=typo::none)
         
         fmt (const short f, const short b, typo s=typo::none)
         
         fmt (const short f, typo s=typo::none)
         
         fmt (fg, const short b, typo s=typo::none)
         
         fmt (const short f, bg, typo s=typo::none)
         
        All combination of 16M-colors mode constructors with different parameters orders.
        fmt (const short fr, const short fg, const short fb, const short gr, const short gg, const short gb, typo s=typo::none)
         fmt (const short fr, const short fg, const short fb, const short gr, const short gg, const short gb, typo s=typo::none)
         
        fmt (fg, const short gr, const short gg, const short gb, typo s=typo::none)
         fmt (fg, const short gr, const short gg, const short gb, typo s=typo::none)
         
        fmt (const short fr, const short fg, const short fb, bg, typo s=typo::none)
         fmt (const short fr, const short fg, const short fb, bg, typo s=typo::none)
         
        fmt (const short fr, const short fg, const short fb, typo s=typo::none)
         fmt (const short fr, const short fg, const short fb, typo s=typo::none)
         
        fmt (const std::string &f, const std::string &b, typo s=typo::none)
         fmt (const std::string &f, const std::string &b, typo s=typo::none)
         
        fmt (fg, const std::string &b, typo s=typo::none)
         fmt (fg, const std::string &b, typo s=typo::none)
         
        fmt (const std::string &f, bg, typo s=typo::none)
         fmt (const std::string &f, bg, typo s=typo::none)
         
        fmt (const std::string &f, typo s=typo::none)
         fmt (const std::string &f, typo s=typo::none)
         
        - - +

        +

        Static Public Member Functions

        -static fmt hash (const std::string &str, const std::vector< fmt > domain={})
        static fmt hash (const std::string &str, const std::vector< fmt > domain={})
         
        - - + - + +enum clutchlog::fmt::fg  +enum clutchlog::fmt::bg 

        +

        Public Attributes

        -enum clutchlog::fmt::ansi mode
        +enum clutchlog::fmt::ansi mode
         Current ANSI color mode.
         
        -enum clutchlog::fmt::typo style
        +enum clutchlog::fmt::typo style
         Typographic style.
         
        -enum clutchlog::fmt::fg fore
        fore
         Foreground color.
         
        -enum clutchlog::fmt::bg back
        back
         Background color.
         
        - - - - + + +

        +

        Protected Member Functions

        -std::ostream & print_on (std::ostream &os) const
         Print the currently encoded format escape code on the given output stream.
         
        std::ostream & print_on (std::ostream &os) const
         Print the currently encoded format escape code on the given output stream. More...
         
        - +clutchlog::fmt::fg_256  +clutchlog::fmt::bg_256  +clutchlog::fmt::fg_16M  +clutchlog::fmt::bg_16M 

        +

        Protected Attributes

        -clutchlog::fmt::fg_256 fore_256
        fore_256
         Current foreground in 256-colors mode.
         
        -clutchlog::fmt::bg_256 back_256
        back_256
         Current background in 256-colors mode.
         
        -clutchlog::fmt::fg_16M fore_16M
        fore_16M
         Current foreground in 16M-colors mode.
         
        -clutchlog::fmt::bg_16M back_16M
        back_16M
         Current background in 16M-colors mode.
         
        - @@ -299,94 +279,990 @@ Classes

        +

        Classes

        struct  bg_16M
         background in 256-colors mode. More...
         Foreground in 256-colors mode. More...
         
        - - - - + - - + - - +

        +

        Public Types

        enum  ansi { ansi::colors_16 = -1, -ansi::colors_256 = 5, -ansi::colors_16M = 2 +
        enum class  ansi { colors_16 = -1 +, colors_256 = 5 +, colors_16M = 2 }
         ANSI code configuring the available number of colors. More...
         
        enum  typo {
        -  reset = 0, -bold = 1, -underline = 4, -inverse = 7, -
        +
        enum class  typo {
        +  reset = 0 +, bold = 1 +, underline = 4 +, inverse = 7 +,
          none = -1
        }
         Typographic style codes.
         Typographic style codes. More...
         
        enum  fg {
        -  black = 30, -red = 31, -green = 32, -yellow = 33, -
        -  blue = 34, -magenta = 35, -cyan = 36, -white = 37, -
        -  bright_black = 90, -bright_red = 91, -bright_green = 92, -bright_yellow = 93, -
        -  bright_blue = 94, -bright_magenta = 95, -bright_cyan = 96, -bright_white = 97, -
        +
        enum class  fg {
        +  black = 30 +, red = 31 +, green = 32 +, yellow = 33 +,
        +  blue = 34 +, magenta = 35 +, cyan = 36 +, white = 37 +,
        +  bright_black = 90 +, bright_red = 91 +, bright_green = 92 +, bright_yellow = 93 +,
        +  bright_blue = 94 +, bright_magenta = 95 +, bright_cyan = 96 +, bright_white = 97 +,
          none = -1
        }
         Foreground color codes.
         Foreground color codes. More...
         
        enum  bg {
        -  black = 40, -red = 41, -green = 42, -yellow = 43, -
        -  blue = 44, -magenta = 45, -cyan = 46, -white = 47, -
        -  bright_black = 100, -bright_red = 101, -bright_green = 102, -bright_yellow = 103, -
        -  bright_blue = 104, -bright_magenta = 105, -bright_cyan = 106, -bright_white = 107, -
        +
        enum class  bg {
        +  black = 40 +, red = 41 +, green = 42 +, yellow = 43 +,
        +  blue = 44 +, magenta = 45 +, cyan = 46 +, white = 47 +,
        +  bright_black = 100 +, bright_red = 101 +, bright_green = 102 +, bright_yellow = 103 +,
        +  bright_blue = 104 +, bright_magenta = 105 +, bright_cyan = 106 +, bright_white = 107 +,
          none = -1
        }
         Background color codes.
         Background color codes. More...
         
        - - - - - - - - - - + + + + + + + + +

        +

        Friends

        -std::ostream & operator<< (std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
         Output stream operator for a 3-tuple of 16-colors mode tags.
         
        -std::ostream & operator<< (std::ostream &os, const typo &s)
         Output stream operator for a typo tag alone, in 16-colors mode.
         
        std::ostream & operator<< (std::ostream &os, const fmt &fmt)
         Output stream overload. More...
         
        std::ostream & operator<< (std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
         Output stream operator for a 3-tuple of 16-colors mode tags. More...
         
        std::ostream & operator<< (std::ostream &os, const typo &s)
         Output stream operator for a typo tag alone, in 16-colors mode. More...
         
        std::ostream & operator<< (std::ostream &os, const fmt &fmt)
         Output stream overload. More...
         
        +

        Constructor & Destructor Documentation

        + +

        ◆ fmt() [1/19]

        + +
        +
        + + + + + +
        + + + + + + + +
        clutchlog::fmt::fmt ()
        +
        +inline
        +
        + +

        Empty constructor, only useful for a no-op formatter.

        + +

        Definition at line 711 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [2/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (fg f,
        bg b = bg::none,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 715 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [3/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (fg f,
        typo s,
        bg b = bg::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 716 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [4/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (bg b,
        fg f = fg::none,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 717 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [5/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (bg b,
        typo s,
        fg f = fg::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 718 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [6/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (typo s,
        fg f = fg::none,
        bg b = bg::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 719 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [7/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (typo s,
        bg b,
        fg f = fg::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 720 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [8/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const short f,
        const short b,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 725 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [9/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const short f,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 726 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [10/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (fg ,
        const short b,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 727 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [11/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const short f,
        bg ,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 728 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [12/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const short fr,
        const short fg,
        const short fb,
        const short gr,
        const short gg,
        const short gb,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 733 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [13/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (fg ,
        const short gr,
        const short gg,
        const short gb,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 737 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [14/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const short fr,
        const short fg,
        const short fb,
        bg ,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 741 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [15/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const short fr,
        const short fg,
        const short fb,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 744 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [16/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const std::string & f,
        const std::string & b,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 748 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [17/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (fg ,
        const std::string & b,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 750 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [18/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const std::string & f,
        bg ,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 752 of file clutchlog.h.

        + +
        +
        + +

        ◆ fmt() [19/19]

        + +
        +
        + + + + + +
        + + + + + + + + + + + + + + + + + + +
        clutchlog::fmt::fmt (const std::string & f,
        typo s = typo::none 
        )
        +
        +inlineexplicit
        +
        + +

        Definition at line 754 of file clutchlog.h.

        + +
        +

        Member Function Documentation

        - + +

        ◆ print_on()

        + +
        +
        + + + + + +
        + + + + + + + + +
        std::ostream & clutchlog::fmt::print_on (std::ostream & os) const
        +
        +inlineprotected
        +
        + +

        Print the currently encoded format escape code on the given output stream.

        + +

        Definition at line 761 of file clutchlog.h.

        + +

        References back, back_16M, back_256, colors_16, colors_16M, colors_256, fore, fore_16M, fore_256, mode, and style.

        + +

        Referenced by operator()(), and str().

        + +
        +
        +

        ◆ operator()()

        @@ -411,19 +1287,19 @@ std::ostream & 

      Format the given string with the currently encoded format.

      -

      Allow to use a formatter as a function:

      clutchlog::fmt error(clutchlog::fmt::fg::red, clutchlog::fmt::typo::bold);
      +

      Allow to use a formatter as a function:

      clutchlog::fmt error(clutchlog::fmt::fg::red, clutchlog::fmt::typo::bold);
      std::cout << error("ERROR") << std::endl;
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:380
      Note
      A formatter called this way WILL output a reset escape code at the end.
      -

      Definition at line 808 of file clutchlog.h.

      +

      Definition at line 810 of file clutchlog.h.

      -

      References print_on().

      +

      References print_on().

      -

      Friends And Related Function Documentation

      - -

      ◆ operator<<

      + +

      ◆ str()

      @@ -432,7 +1308,77 @@ std::ostream & 
      - + + + + + +
      std::ostream& operator<< std::string clutchlog::fmt::str () const
      +
      +inline
      +
      + +

      Return the formatting code as a string.

      + +

      Definition at line 822 of file clutchlog.h.

      + +

      References print_on().

      + +
      + + +

      ◆ hash()

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      static fmt clutchlog::fmt::hash (const std::string & str,
      const std::vector< fmtdomain = {} 
      )
      +
      +inlinestatic
      +
      + +

      Definition at line 829 of file clutchlog.h.

      + +
      +
      +

      Friends And Related Function Documentation

      + +

      ◆ operator<<

      + +
      +
      + + + diff --git a/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.js b/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.js new file mode 100644 index 0000000..3a7dc2e --- /dev/null +++ b/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.js @@ -0,0 +1,4 @@ +var dir_c318bd5cf14aaa5601e6029e0b5b4048 = +[ + [ "clutchlog.h", "clutchlog_8h.html", "clutchlog_8h" ] +]; \ No newline at end of file diff --git a/docs/doxygen.css b/docs/doxygen.css index 73ecbb2..2010785 100644 --- a/docs/doxygen.css +++ b/docs/doxygen.css @@ -1,4 +1,4 @@ -/* The standard CSS for doxygen 1.8.17 */ +/* The standard CSS for doxygen 1.9.4 */ body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; @@ -66,7 +66,7 @@ p.startli, p.startdd { margin-top: 2px; } -th p.starttd, p.intertd, p.endtd { +th p.starttd, th p.intertd, th p.endtd { font-size: 100%; font-weight: 700; } @@ -103,30 +103,96 @@ caption { } span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; + font-size: 70%; text-align: center; } -div.qindex, div.navpath { - width: 100%; - line-height: 140%; +h3.version { + font-size: 90%; + text-align: center; } div.navtab { - margin-right: 15px; + border-right: 1px solid #A3B4D7; + padding-right: 15px; + text-align: right; + line-height: 110%; } +div.navtab table { + border-spacing: 0; +} + +td.navtab { + padding-right: 6px; + padding-left: 6px; +} +td.navtabHL { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + padding-right: 6px; + padding-left: 6px; +} + +td.navtabHL a, td.navtabHL a:visited { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +a.navtab { + font-weight: bold; +} + +div.qindex{ + text-align: center; + width: 100%; + line-height: 140%; + font-size: 130%; + color: #A0A0A0; +} + +dt.alphachar{ + font-size: 180%; + font-weight: bold; +} + +.alphachar a{ + color: black; +} + +.alphachar a:hover, .alphachar a:visited{ + text-decoration: none; +} + +.classindex dl { + padding: 25px; + column-count:1 +} + +.classindex dd { + display:inline-block; + margin-left: 50px; + width: 90%; + line-height: 1.15em; +} + +.classindex dl.odd { + background-color: #F8F9FC; +} + +@media(min-width: 1120px) { + .classindex dl { + column-count:2 + } +} + +@media(min-width: 1320px) { + .classindex dl { + column-count:3 + } +} + + /* @group Link Styling */ a { @@ -143,17 +209,6 @@ a:hover { text-decoration: underline; } -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #FFFFFF; - border: 1px double #869DCA; -} - .contents a.qindexHL:visited { color: #FFFFFF; } @@ -173,6 +228,33 @@ a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { color: #4665A2; } +a.code.hl_class { /* style for links to class names in code snippets */ } +a.code.hl_struct { /* style for links to struct names in code snippets */ } +a.code.hl_union { /* style for links to union names in code snippets */ } +a.code.hl_interface { /* style for links to interface names in code snippets */ } +a.code.hl_protocol { /* style for links to protocol names in code snippets */ } +a.code.hl_category { /* style for links to category names in code snippets */ } +a.code.hl_exception { /* style for links to exception names in code snippets */ } +a.code.hl_service { /* style for links to service names in code snippets */ } +a.code.hl_singleton { /* style for links to singleton names in code snippets */ } +a.code.hl_concept { /* style for links to concept names in code snippets */ } +a.code.hl_namespace { /* style for links to namespace names in code snippets */ } +a.code.hl_package { /* style for links to package names in code snippets */ } +a.code.hl_define { /* style for links to macro names in code snippets */ } +a.code.hl_function { /* style for links to function names in code snippets */ } +a.code.hl_variable { /* style for links to variable names in code snippets */ } +a.code.hl_typedef { /* style for links to typedef names in code snippets */ } +a.code.hl_enumvalue { /* style for links to enum value names in code snippets */ } +a.code.hl_enumeration { /* style for links to enumeration names in code snippets */ } +a.code.hl_signal { /* style for links to Qt signal names in code snippets */ } +a.code.hl_slot { /* style for links to Qt slot names in code snippets */ } +a.code.hl_friend { /* style for links to friend names in code snippets */ } +a.code.hl_dcop { /* style for links to KDE3 DCOP names in code snippets */ } +a.code.hl_property { /* style for links to property names in code snippets */ } +a.code.hl_event { /* style for links to event names in code snippets */ } +a.code.hl_sequence { /* style for links to sequence names in code snippets */ } +a.code.hl_dictionary { /* style for links to dictionary names in code snippets */ } + /* @end */ dl.el { @@ -180,7 +262,7 @@ dl.el { } ul { - overflow: hidden; /*Fixed: list item bullets overlap floating elements*/ + overflow: visible; } #side-nav ul { @@ -258,6 +340,7 @@ div.line.glow { span.lineno { padding-right: 4px; + margin-right: 9px; text-align: right; border-right: 2px solid #0F0; background-color: #E8E8E8; @@ -384,6 +467,12 @@ img.footer { vertical-align: middle; } +.compoundTemplParams { + color: #4665A2; + font-size: 80%; + line-height: 120%; +} + /* @group Code Colorization */ span.keyword { @@ -1267,6 +1356,11 @@ dl.section dd { } +#projectrow +{ + height: 56px; +} + #projectlogo { text-align: center; @@ -1282,18 +1376,19 @@ dl.section dd { #projectalign { vertical-align: middle; + padding-left: 0.5em; } #projectname { - font: 300% Tahoma, Arial,sans-serif; + font: 200% Tahoma, Arial,sans-serif; margin: 0px; padding: 2px 0px; } #projectbrief { - font: 120% Tahoma, Arial,sans-serif; + font: 90% Tahoma, Arial,sans-serif; margin: 0px; padding: 0px; } @@ -1358,10 +1453,12 @@ dl.citelist dt { font-weight:bold; margin-right:10px; padding:5px; + text-align:right; + width:52px; } dl.citelist dd { - margin:2px 0; + margin:2px 0 2px 72px; padding:5px 0; } @@ -1424,6 +1521,16 @@ div.toc li.level4 { margin-left: 45px; } +span.emoji { + /* font family used at the site: https://unicode.org/emoji/charts/full-emoji-list.html + * font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", Times, Symbola, Aegyptus, Code2000, Code2001, Code2002, Musica, serif, LastResort; + */ +} + +span.obfuscator { + display: none; +} + .PageDocRTL-title div.toc li.level1 { margin-left: 0 !important; margin-right: 0; @@ -1478,7 +1585,7 @@ tr.heading h2 { #powerTip { cursor: default; - white-space: nowrap; + /*white-space: nowrap;*/ background-color: white; border: 1px solid gray; border-radius: 4px 4px 4px 4px; @@ -1661,47 +1768,6 @@ tr.heading h2 { /* @group Markdown */ -/* -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTableHead tr { -} - -table.markdownTableBodyLeft td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft { - text-align: left -} - -th.markdownTableHeadRight { - text-align: right -} - -th.markdownTableHeadCenter { - text-align: center -} -*/ - table.markdownTable { border-collapse:collapse; margin-top: 4px; @@ -1758,6 +1824,10 @@ table.DocNodeLTR { margin-left: 0; } +code.JavaDocCode { + direction:ltr; +} + tt, code, kbd, samp { display: inline-block; diff --git a/docs/doxygen.svg b/docs/doxygen.svg new file mode 100644 index 0000000..d42dad5 --- /dev/null +++ b/docs/doxygen.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/dynsections.js b/docs/dynsections.js index c8e84aa..7906639 100644 --- a/docs/dynsections.js +++ b/docs/dynsections.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program 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 - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function toggleVisibility(linkObj) { @@ -118,10 +119,10 @@ function toggleInherit(id) } } /* @license-end */ - $(document).ready(function() { $('.code,.codeRef').each(function() { $(this).data('powertip',$('#a'+$(this).attr('href').replace(/.*\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html()); + $.fn.powerTip.smartPlacementLists.s = [ 's', 'n', 'ne', 'se' ]; $(this).powerTip({ placement: 's', smartPlacement: true, mouseOnToPopup: true }); }); }); diff --git a/docs/files.html b/docs/files.html index db04910..bcafe0e 100644 --- a/docs/files.html +++ b/docs/files.html @@ -2,8 +2,8 @@ - - + +clutchlog: File List @@ -24,11 +24,10 @@
      + + + @@ -457,17 +1403,17 @@ std::ostream &  @@ -489,15 +1435,41 @@ std::ostream &  - -
      std::ostream & operator<< ( std::ostream &  os,

      Output stream overload.

      -

      Allow to use a formatter as a tag within a stream:

      clutchlog::fmt end(clutchlog::fmt::typo::reset);
      -
      clutchlog::fmt error(clutchlog::fmt::fg::red, clutchlog::fmt::typo::bold);
      +

      Allow to use a formatter as a tag within a stream:

      clutchlog::fmt end(clutchlog::fmt::typo::reset);
      +
      clutchlog::fmt error(clutchlog::fmt::fg::red, clutchlog::fmt::typo::bold);
      std::cout << error << "ERROR" << end << std::endl;
      Note
      An formatter called this way will NOT output a reset escape code.
      -

      Definition at line 793 of file clutchlog.h.

      +

      Definition at line 795 of file clutchlog.h.

      Member Enumeration Documentation

      - +

      ◆ ansi

      @@ -477,7 +1423,7 @@ std::ostream & 
      - +
      enum clutchlog::fmt::ansienum class clutchlog::fmt::ansi
      -
      Enumerator
      colors_16 

      16 colors mode.

      +
      Enumerator
      colors_16 

      16 colors mode.

      colors_256 

      256 colors mode.

      +
      colors_256 

      256 colors mode.

      colors_16M 

      16 millions ("true") colors mode.

      +
      colors_16M 

      16 millions ("true") colors mode.

      -

      Definition at line 382 of file clutchlog.h.

      +

      Definition at line 383 of file clutchlog.h.

      + + + + +

      ◆ typo

      + +
      +
      + + + + + +
      + + + + +
      enum class clutchlog::fmt::typo
      +
      +strong
      +
      + +

      Typographic style codes.

      + +

      Definition at line 393 of file clutchlog.h.

      @@ -506,14 +1478,11 @@ std::ostream & 
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      diff --git a/docs/classes.html b/docs/classes.html index 535d19e..5a229d0 100644 --- a/docs/classes.html +++ b/docs/classes.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Index @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,48 +84,30 @@ $(document).ready(function(){initNavTree('classes.html',''); initResizable(); })
      -
      -
      Class Index
      +
      Class Index
      diff --git a/docs/clutchlog_8h.html b/docs/clutchlog_8h.html index 1dc3cd5..ed21ecf 100644 --- a/docs/clutchlog_8h.html +++ b/docs/clutchlog_8h.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog.h File Reference @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -87,12 +87,12 @@ $(document).ready(function(){initNavTree('clutchlog_8h.html',''); initResizable( -
      -
      clutchlog.h File Reference
      +
      clutchlog.h File Reference
      #include <ciso646>
      #include <filesystem>
      +#include <iterator>
      #include <iostream>
      #include <sstream>
      #include <fstream>
      @@ -119,7 +119,7 @@ $(document).ready(function(){initNavTree('clutchlog_8h.html',''); initResizable(

      Go to the source code of this file.

      - @@ -152,38 +152,31 @@ Classes

      +

      Classes

      class  clutchlog
       The single class which holds everything. More...
       Structure holding a location matching. More...
       
      - - - + + - - + + - - + + - - + + - - + + - - + + - - + + @@ -195,40 +188,104 @@ Macros - - + - - + + - - + + - - + + - - + + - - + +

      +

      Macros

      -#define CLUTCHLOG_H
       Header guard.
      #define CLUTCHLOG_H
       Header guard. More...
       
      -#define CLUTCHLOG_HAVE_UNIX_SYSINFO   0
       True if POSIX headers necessary for stack depth management are available.
      #define CLUTCHLOG_HAVE_UNIX_SYSINFO   0
       True if POSIX headers necessary for stack depth management are available. More...
       
      -#define CLUTCHLOG_HAVE_UNIX_SYSIOCTL   0
       True if the system can handle the hfill feature.
      #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL   0
       True if the system can handle the hfill feature. More...
       
      -#define WITH_CLUTCHLOG
       Actually enable clutchlog features.
      #define WITH_CLUTCHLOG
       Actually enable clutchlog features. More...
       
      -#define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG   clutchlog::level::progress
       Default level over which calls to the logger are optimized out when NDEBUG is defined.
      #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG   clutchlog::level::progress
       Default level over which calls to the logger are optimized out when NDEBUG is defined. More...
       
      -#define CLUTCHLOC   __FILE__, __FUNCTION__, __LINE__
       Handy shortcuts to location.
      #define CLUTCHLOC   __FILE__, __FUNCTION__, __LINE__
       Handy shortcuts to location. More...
       
      #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
       Log a message at the given level and with a given depth delta. More...
       
      -#define CLUTCHLOG(LEVEL, WHAT)   CLUTCHLOGD(LEVEL, WHAT, 0)
       Log a message at the given level.
      #define CLUTCHLOG(LEVEL, WHAT)    CLUTCHLOGD(LEVEL, WHAT, 0)
       Log a message at the given level. More...
       
      #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
       Dump the given container. More...
       Run any code if the scope matches. More...
       
      Default configuration members
      -#define CLUTCHLOG_DEFAULT_FORMAT   "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
       Compile-time default format of the messages (debug mode: with absolute location).
      #define CLUTCHLOG_DEFAULT_FORMAT   "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
       
      -#define CLUTCHDUMP_DEFAULT_FORMAT   "# {level} in {func} @ {file}:{line}"
       Compile-time default format of the comment line in file dump.
      #define CLUTCHDUMP_DEFAULT_FORMAT   "# {level} in {func} @ {file}:{line}"
       Compile-time default format of the comment line in file dump. More...
       
      -#define CLUTCHDUMP_DEFAULT_SEP   "\n"
       Compile-time default item separator for dump.
      #define CLUTCHDUMP_DEFAULT_SEP   "\n"
       Compile-time default item separator for dump. More...
       
      -#define CLUTCHLOG_DEFAULT_DEPTH_MARK   ">"
       Compile-time default mark for stack depth.
      #define CLUTCHLOG_DEFAULT_DEPTH_MARK   ">"
       Compile-time default mark for stack depth. More...
       
      -#define CLUTCHLOG_STRIP_CALLS   5
       Compile-time number of call stack levels to remove from depth display by default.
      #define CLUTCHLOG_STRIP_CALLS   5
       Compile-time number of call stack levels to remove from depth display by default. More...
       
      -#define CLUTCHLOG_DEFAULT_HFILL_MARK   '.'
       Character used as a filling for right-align the right part of messages with "{hfill}".
      #define CLUTCHLOG_DEFAULT_HFILL_MARK   '.'
       Character used as a filling for right-align the right part of messages with "{hfill}". More...
       
      +

      Macro Definition Documentation

      + +

      ◆ CLUTCHLOG_H

      + +
      +
      + + + + +
      #define CLUTCHLOG_H
      +
      + +

      Header guard.

      + +

      Definition at line 4 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHLOG_HAVE_UNIX_SYSINFO

      + +
      +
      + + + + +
      #define CLUTCHLOG_HAVE_UNIX_SYSINFO   0
      +
      + +

      True if POSIX headers necessary for stack depth management are available.

      + +

      Definition at line 34 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHLOG_HAVE_UNIX_SYSIOCTL

      + +
      +
      + + + + +
      #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL   0
      +
      + +

      True if the system can handle the hfill feature.

      + +

      Definition at line 44 of file clutchlog.h.

      + +
      +
      + +

      ◆ WITH_CLUTCHLOG

      + +
      +
      + + + + +
      #define WITH_CLUTCHLOG
      +
      + +

      Actually enable clutchlog features.

      + +

      Definition at line 54 of file clutchlog.h.

      + +
      +
      diff --git a/docs/clutchlog_8h.js b/docs/clutchlog_8h.js index bf6872c..cfcd61b 100644 --- a/docs/clutchlog_8h.js +++ b/docs/clutchlog_8h.js @@ -1,6 +1,6 @@ var clutchlog_8h = [ - [ "scope_t", "structclutchlog_1_1scope__t.html", "structclutchlog_1_1scope__t" ], + [ "clutchlog::scope_t", "structclutchlog_1_1scope__t.html", "structclutchlog_1_1scope__t" ], [ "CLUTCHLOG_H", "clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16", null ], [ "CLUTCHLOG_HAVE_UNIX_SYSINFO", "clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb", null ], [ "CLUTCHLOG_HAVE_UNIX_SYSIOCTL", "clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817", null ], diff --git a/docs/clutchlog_8h__dep__incl.map b/docs/clutchlog_8h__dep__incl.map index 8180ccb..e10fd2c 100644 --- a/docs/clutchlog_8h__dep__incl.map +++ b/docs/clutchlog_8h__dep__incl.map @@ -1,16 +1,16 @@ - + - - - - - - - - - + + + + + + + + + diff --git a/docs/clutchlog_8h__dep__incl.md5 b/docs/clutchlog_8h__dep__incl.md5 index 80b393d..015ab32 100644 --- a/docs/clutchlog_8h__dep__incl.md5 +++ b/docs/clutchlog_8h__dep__incl.md5 @@ -1 +1 @@ -a81a51c1f045be087627e35d5e6b32ef \ No newline at end of file +550462ca9e6ab61c5ef8a484a81dbeed \ No newline at end of file diff --git a/docs/clutchlog_8h__dep__incl.svg b/docs/clutchlog_8h__dep__incl.svg index e4f4e4c..aa0df7a 100644 --- a/docs/clutchlog_8h__dep__incl.svg +++ b/docs/clutchlog_8h__dep__incl.svg @@ -46,7 +46,7 @@ if (edges && edges.length) { @@ -54,13 +54,13 @@ var sectionId = 'dynsection-1'; clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -76,8 +76,8 @@ var sectionId = 'dynsection-1'; Node1->Node2 - - + + @@ -91,8 +91,8 @@ var sectionId = 'dynsection-1'; Node1->Node3 - - + + @@ -106,8 +106,8 @@ var sectionId = 'dynsection-1'; Node1->Node4 - - + + @@ -121,143 +121,143 @@ var sectionId = 'dynsection-1'; Node1->Node5 - - + + Node6 - - -t-demo-extravagant.cpp + + +t-demo.cpp Node1->Node6 - - + + Node7 - - -t-demo.cpp + + +t-depth-delta.cpp Node1->Node7 - - + + Node8 - - -t-depth-delta.cpp + + +t-dump.cpp Node1->Node8 - - + + Node9 - - -t-dump.cpp + + +t-extra.cpp Node1->Node9 - - + + Node10 - -t-filename.cpp + +t-filename.cpp Node1->Node10 - - + + Node11 - -t-fmt-constructors.cpp + +t-fmt-constructors.cpp Node1->Node11 - - + + Node12 - -t-hash-color.cpp + +t-hash-color.cpp Node1->Node12 - - + + Node13 - -t-log.cpp + +t-log.cpp Node1->Node13 - - + + Node14 - -t-one-line-if.cpp + +t-one-line-if.cpp Node1->Node14 - - + + diff --git a/docs/clutchlog_8h__dep__incl_org.svg b/docs/clutchlog_8h__dep__incl_org.svg index bcf3f63..3ac13a5 100644 --- a/docs/clutchlog_8h__dep__incl_org.svg +++ b/docs/clutchlog_8h__dep__incl_org.svg @@ -4,17 +4,17 @@ - + clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -30,8 +30,8 @@ Node1->Node2 - - + + @@ -45,8 +45,8 @@ Node1->Node3 - - + + @@ -60,8 +60,8 @@ Node1->Node4 - - + + @@ -75,143 +75,143 @@ Node1->Node5 - - + + Node6 - - -t-demo-extravagant.cpp + + +t-demo.cpp Node1->Node6 - - + + Node7 - - -t-demo.cpp + + +t-depth-delta.cpp Node1->Node7 - - + + Node8 - - -t-depth-delta.cpp + + +t-dump.cpp Node1->Node8 - - + + Node9 - - -t-dump.cpp + + +t-extra.cpp Node1->Node9 - - + + Node10 - -t-filename.cpp + +t-filename.cpp Node1->Node10 - - + + Node11 - -t-fmt-constructors.cpp + +t-fmt-constructors.cpp Node1->Node11 - - + + Node12 - -t-hash-color.cpp + +t-hash-color.cpp Node1->Node12 - - + + Node13 - -t-log.cpp + +t-log.cpp Node1->Node13 - - + + Node14 - -t-one-line-if.cpp + +t-one-line-if.cpp Node1->Node14 - - + + diff --git a/docs/clutchlog_8h__incl.map b/docs/clutchlog_8h__incl.map index 528ccc6..36226b5 100644 --- a/docs/clutchlog_8h__incl.map +++ b/docs/clutchlog_8h__incl.map @@ -1,14 +1,15 @@ - + - - - - - - - - - + + + + + + + + + + diff --git a/docs/clutchlog_8h__incl.md5 b/docs/clutchlog_8h__incl.md5 index 8672821..3f79c82 100644 --- a/docs/clutchlog_8h__incl.md5 +++ b/docs/clutchlog_8h__incl.md5 @@ -1 +1 @@ -128ca966338fdda6dfe848c977a3a290 \ No newline at end of file +abe9435b0abe9059d00d25f6afdb3928 \ No newline at end of file diff --git a/docs/clutchlog_8h__incl.svg b/docs/clutchlog_8h__incl.svg index 40ad16e..57ecb9c 100644 --- a/docs/clutchlog_8h__incl.svg +++ b/docs/clutchlog_8h__incl.svg @@ -46,7 +46,7 @@ if (edges && edges.length) { @@ -54,13 +54,13 @@ var sectionId = 'dynsection-0'; clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -76,8 +76,8 @@ var sectionId = 'dynsection-0'; Node1->Node2 - - + + @@ -91,143 +91,158 @@ var sectionId = 'dynsection-0'; Node1->Node3 - - + + Node4 - -iostream + +iterator Node1->Node4 - - + + Node5 - -sstream + +iostream Node1->Node5 - - + + Node6 - -fstream + +sstream Node1->Node6 - - + + Node7 - -cassert + +fstream Node1->Node7 - - + + Node8 - -cstdlib + +cassert Node1->Node8 - - + + Node9 - -string + +cstdlib Node1->Node9 - - + + Node10 - -limits + +string Node1->Node10 - - + + Node11 - -regex + +limits Node1->Node11 - - + + Node12 - -map + +regex Node1->Node12 - - + + + + + +Node13 + + +map + + + + + +Node1->Node13 + + diff --git a/docs/clutchlog_8h__incl_org.svg b/docs/clutchlog_8h__incl_org.svg index bd41c98..c1dffb0 100644 --- a/docs/clutchlog_8h__incl_org.svg +++ b/docs/clutchlog_8h__incl_org.svg @@ -4,17 +4,17 @@ - + clutchlog.h - + Node1 - -clutchlog.h + +clutchlog.h @@ -30,8 +30,8 @@ Node1->Node2 - - + + @@ -45,143 +45,158 @@ Node1->Node3 - - + + Node4 - -iostream + +iterator Node1->Node4 - - + + Node5 - -sstream + +iostream Node1->Node5 - - + + Node6 - -fstream + +sstream Node1->Node6 - - + + Node7 - -cassert + +fstream Node1->Node7 - - + + Node8 - -cstdlib + +cassert Node1->Node8 - - + + Node9 - -string + +cstdlib Node1->Node9 - - + + Node10 - -limits + +string Node1->Node10 - - + + Node11 - -regex + +limits Node1->Node11 - - + + Node12 - -map + +regex Node1->Node12 - - + + + + + +Node13 + + +map + + + + + +Node1->Node13 + + diff --git a/docs/clutchlog_8h_source.html b/docs/clutchlog_8h_source.html index fe6753b..3e17425 100644 --- a/docs/clutchlog_8h_source.html +++ b/docs/clutchlog_8h_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog.h Source File @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,1483 +84,1477 @@ $(document).ready(function(){initNavTree('clutchlog_8h_source.html',''); initRes
      -
      -
      clutchlog.h
      +
      clutchlog.h
      -Go to the documentation of this file.
      1 #pragma once
      -
      2 #ifndef CLUTCHLOG_H
      -
      3 #define CLUTCHLOG_H
      -
      5 
      -
      7 #include <ciso646>
      -
      8  #ifdef FSEXPERIMENTAL
      -
      9  #include <experimental/filesystem>
      -
      10  namespace fs = std::experimental::filesystem;
      -
      11 #else
      -
      12  #include <filesystem>
      -
      13  namespace fs = std::filesystem;
      -
      14 #endif
      -
      15 
      -
      16 #include <iostream>
      -
      17 #include <sstream>
      -
      18 #include <fstream>
      -
      19 #include <cassert>
      -
      20 #include <cstdlib>
      -
      21 #include <string>
      -
      22 #include <limits>
      -
      23 #include <regex>
      -
      24 #include <map>
      -
      25 
      -
      27 #if __has_include(<execinfo.h>) && __has_include(<stdlib.h>) && __has_include(<libgen.h>)
      -
      28  #include <execinfo.h> // execinfo
      -
      29  #include <stdlib.h> // getenv
      -
      30  #include <libgen.h> // basename
      -
      31  #define CLUTCHLOG_HAVE_UNIX_SYSINFO 1
      -
      32 #else
      -
      33  #define CLUTCHLOG_HAVE_UNIX_SYSINFO 0
      -
      34 #endif
      -
      35 
      -
      37 #if __has_include(<sys/ioctl.h>) && __has_include(<stdio.h>) && __has_include(<unistd.h>)
      -
      38  #include <sys/ioctl.h>
      -
      39  #include <stdio.h>
      -
      40  #include <unistd.h>
      -
      41  #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL 1
      -
      42 #else
      -
      43  #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL 0
      -
      44 #endif
      -
      45 
      -
      46 
      -
      47 /**********************************************************************
      -
      48  * Enable by default in Debug builds.
      -
      49  **********************************************************************/
      -
      50 #ifndef WITH_CLUTCHLOG
      -
      51  #ifndef NDEBUG
      -
      52  #define WITH_CLUTCHLOG
      -
      54  #endif
      -
      55 #endif
      -
      56 
      -
      57 /**********************************************************************
      -
      58  * Macros definitions
      -
      59  **********************************************************************/
      -
      60 #ifdef WITH_CLUTCHLOG
      -
      61 
      -
      65 #ifndef CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG
      -
      66  #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG clutchlog::level::progress
      -
      68 #endif // CLUTCHLOG_DEFAULT_DEPTH_BUILT
      -
      69 
      -
      76 #define CLUTCHLOC __FILE__, __FUNCTION__, __LINE__
      -
      78 
      -
      80 #ifndef NDEBUG
      -
      81  #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \
      -
      82  auto& clutchlog__logger = clutchlog::logger(); \
      -
      83  std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
      -
      84  clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
      -
      85  } while(0)
      -
      86 #else // not Debug build.
      -
      87  #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \
      -
      88  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      -
      89  auto& clutchlog__logger = clutchlog::logger(); \
      -
      90  std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
      -
      91  clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
      -
      92  } \
      -
      93  } while(0)
      -
      94 #endif // NDEBUG
      -
      95 
      -
      97 #ifndef NDEBUG
      -
      98  #define CLUTCHLOG( LEVEL, WHAT ) \
      -
      99  CLUTCHLOGD(LEVEL, WHAT, 0)
      -
      100 #else // not Debug build.
      -
      101  #define CLUTCHLOG( LEVEL, WHAT ) \
      -
      102  CLUTCHLOGD(LEVEL, WHAT, 0)
      -
      103 #endif // NDEBUG
      -
      104 
      -
      106 #ifndef NDEBUG
      -
      107  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
      -
      108  auto& clutchlog__logger = clutchlog::logger(); \
      -
      109  clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
      -
      110  CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
      -
      111  } while(0)
      -
      112 #else // not Debug build.
      -
      113  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
      -
      114  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      -
      115  auto& clutchlog__logger = clutchlog::logger(); \
      -
      116  clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
      -
      117  CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
      -
      118  } \
      -
      119  } while(0)
      -
      120 #endif // NDEBUG
      -
      121 
      -
      123 #ifndef NDEBUG
      -
      124  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
      -
      125  auto& clutchlog__logger = clutchlog::logger(); \
      -
      126  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      -
      127  if(clutchlog__scope.matches) { \
      -
      128  FUNC(__VA_ARGS__); \
      -
      129  } \
      -
      130  } while(0)
      -
      131 #else // not Debug build.
      -
      132  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
      -
      133  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      -
      134  auto& clutchlog__logger = clutchlog::logger(); \
      -
      135  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      -
      136  if(clutchlog__scope.matches) { \
      -
      137  FUNC(__VA_ARGS__); \
      -
      138  } \
      -
      139  } \
      -
      140  } while(0)
      -
      141 #endif // NDEBUG
      -
      142 
      -
      144 #ifndef NDEBUG
      -
      145  #define CLUTCHCODE( LEVEL, ... ) do { \
      -
      146  auto& clutchlog__logger = clutchlog::logger(); \
      -
      147  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      -
      148  if(clutchlog__scope.matches) { \
      -
      149  __VA_ARGS__ \
      -
      150  } \
      -
      151  } while(0)
      -
      152 #else // not Debug build.
      -
      153  #define CLUTCHCODE( LEVEL, CODE ) do { \
      -
      154  if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      -
      155  auto& clutchlog__logger = clutchlog::logger(); \
      -
      156  clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      -
      157  if(clutchlog__scope.matches) { \
      -
      158  CODE \
      -
      159  } \
      -
      160  } \
      -
      161  } while(0)
      -
      162 #endif // NDEBUG
      -
      163 
      -
      166 #else // not WITH_CLUTCHLOG
      -
      167  // Disabled macros can still be called in Release builds.
      -
      168  #define CLUTCHLOG( LEVEL, WHAT ) do {/*nothing*/} while(0)
      -
      169  #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do {/*nothing*/} while(0)
      -
      170  #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do {/*nothing*/} while(0)
      -
      171  #define CLUTCHFUNC( LEVEL, FUNC, ... ) do {/*nothing*/} while(0)
      -
      172  #define CLUTCHCODE( LEVEL, CODE ) do {/*nothing*/} while(0)
      -
      173 #endif // WITH_CLUTCHLOG
      -
      174 
      -
      175 /**********************************************************************
      -
      176  * Implementation
      -
      177  **********************************************************************/
      -
      178 
      -
      179 #ifdef WITH_CLUTCHLOG
      -
      180 
      - -
      188 {
      -
      189  protected:
      -
      190 
      -
      195  #ifndef NDEBUG
      -
      196  #ifndef CLUTCHLOG_DEFAULT_FORMAT
      -
      197  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 // Enables: name, depth and depth_marks
      -
      199  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1 // Enables: hfill
      -
      200  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func} @ {file}:{line}\n"
      -
      201  #else
      -
      202  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
      -
      203  #endif
      -
      204  #else
      -
      205  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      -
      206  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg} {hfill} {func} @ {file}:{line}\n"
      -
      207  #else
      -
      208  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
      -
      209  #endif
      -
      210  #endif
      -
      211  #endif
      -
      212  #else
      -
      213  #ifndef CLUTCHLOG_DEFAULT_FORMAT
      -
      214  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      216  #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func}\n"
      -
      217  #else
      -
      218  #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func}\n"
      -
      219  #endif
      -
      220  #endif
      -
      221  #endif
      -
      222  static inline std::string default_format = CLUTCHLOG_DEFAULT_FORMAT;
      -
      224 
      -
      225  #ifndef NDEBUG
      -
      226  #ifndef CLUTCHDUMP_DEFAULT_FORMAT
      -
      227  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      229  #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth}) @ {file}:{line}"
      -
      230  #else
      -
      231  #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func} @ {file}:{line}"
      -
      232  #endif
      -
      233  #endif // CLUTCHDUMP_DEFAULT_FORMAT
      -
      234  #else
      -
      235  #ifndef CLUTCHDUMP_DEFAULT_FORMAT
      -
      236  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      238  #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth})"
      -
      239  #else
      -
      240  #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func}"
      -
      241  #endif
      -
      242  #endif // CLUTCHDUMP_DEFAULT_FORMAT
      -
      243  #endif
      -
      244  static inline std::string dump_default_format = CLUTCHDUMP_DEFAULT_FORMAT;
      -
      246 
      -
      247  #ifndef CLUTCHDUMP_DEFAULT_SEP
      -
      248  #define CLUTCHDUMP_DEFAULT_SEP "\n"
      -
      250  #endif // CLUTCHDUMP_DEFAULT_SEP
      -
      251  static inline std::string dump_default_sep = CLUTCHDUMP_DEFAULT_SEP;
      -
      253 
      -
      254  #ifndef CLUTCHLOG_DEFAULT_DEPTH_MARK
      -
      255  #define CLUTCHLOG_DEFAULT_DEPTH_MARK ">"
      -
      257  #endif // CLUTCHLOG_DEFAULT_DEPTH_MARK
      -
      258  static inline std::string default_depth_mark = CLUTCHLOG_DEFAULT_DEPTH_MARK;
      -
      260 
      -
      261  #ifndef CLUTCHLOG_STRIP_CALLS
      -
      262  #define CLUTCHLOG_STRIP_CALLS 5
      -
      264  #endif // CLUTCHLOG_STRIP_CALLS
      -
      265  static inline unsigned int default_strip_calls = CLUTCHLOG_STRIP_CALLS;
      -
      267 
      -
      268  #ifndef CLUTCHLOG_DEFAULT_HFILL_MARK
      -
      269  #define CLUTCHLOG_DEFAULT_HFILL_MARK '.'
      -
      271  #endif // CLUTCHLOG_DEFAULT_HFILL_MARK
      - -
      274 
      -
      275 
      -
      276  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      -
      277  #ifndef CLUTCHLOG_DEFAULT_HFILL_MAX
      -
      278  #define CLUTCHLOG_DEFAULT_HFILL_MAX 300
      -
      279  #endif
      -
      280  #ifndef CLUTCHLOG_DEFAULT_HFILL_MIN
      -
      281  #define CLUTCHLOG_DEFAULT_HFILL_MIN 150
      -
      282  #endif
      -
      283  #endif
      -
      284  static inline size_t default_hfill_max = CLUTCHLOG_DEFAULT_HFILL_MAX;
      -
      287  static inline size_t default_hfill_min = CLUTCHLOG_DEFAULT_HFILL_MIN;
      -
      288 
      -
      289  // NOTE: there is no CLUTCHLOG_HFILL_STYLE for defaulting,
      -
      290  // but you can still set `hfill_style(...)` on the logger singleton.
      -
      291  /* @} DefaultConfig */
      -
      292  /* @} */
      -
      293 
      -
      294 
      -
      295  public:
      -
      296 
      -
      306  static clutchlog& logger()
      -
      307  {
      -
      308  static clutchlog instance;
      -
      309  return instance;
      -
      310  }
      -
      311 
      -
      313  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
      -
      314 
      -
      316  enum filename {path, base, dir, dirbase, stem, dirstem};
      -
      317 
      -
      379  class fmt {
      -
      380  public:
      -
      382  enum class ansi {
      -
      384  colors_16 = -1, // Not supposed to be casted.
      -
      386  colors_256 = 5, // Casted as short in color::operator<<.
      -
      388  colors_16M = 2 // Casted as short in color::operator<<
      -
      389  } mode;
      -
      390 
      -
      392  enum class typo {
      -
      393  reset = 0,
      -
      394  bold = 1,
      -
      395  underline = 4,
      -
      396  inverse = 7,
      -
      397  none = -1
      -
      398  } style;
      -
      399 
      -
      402  enum class fg {
      -
      404  black = 30,
      -
      405  red = 31,
      -
      406  green = 32,
      -
      407  yellow = 33,
      -
      408  blue = 34,
      -
      409  magenta = 35,
      -
      410  cyan = 36,
      -
      411  white = 37,
      -
      412  bright_black = 90,
      -
      413  bright_red = 91,
      -
      414  bright_green = 92,
      -
      415  bright_yellow = 93,
      -
      416  bright_blue = 94,
      -
      417  bright_magenta = 95,
      -
      418  bright_cyan = 96,
      -
      419  bright_white = 97,
      -
      420  none = -1
      -
      421  } fore;
      -
      422 
      -
      424  enum class bg {
      -
      425  black = 40,
      -
      426  red = 41,
      -
      427  green = 42,
      -
      428  yellow = 43,
      -
      429  blue = 44,
      -
      430  magenta = 45,
      -
      431  cyan = 46,
      -
      432  white = 47,
      -
      433  bright_black = 100,
      -
      434  bright_red = 101,
      -
      435  bright_green = 102,
      -
      436  bright_yellow = 103,
      -
      437  bright_blue = 104,
      -
      438  bright_magenta = 105,
      -
      439  bright_cyan = 106,
      -
      440  bright_white = 107,
      -
      441  none = -1
      -
      442  } back;
      -
      443 
      -
      444  protected:
      -
      446  friend std::ostream& operator<<(std::ostream& os, const std::tuple<fg,bg,typo>& fbs)
      -
      447  {
      -
      448  auto [f,b,s] = fbs;
      -
      449  std::vector<short> codes; codes.reserve(3);
      -
      450  if(f != fg::none) { codes.push_back(static_cast<short>(f));}
      -
      451  if(b != bg::none) { codes.push_back(static_cast<short>(b));}
      -
      452  if(s != typo::none) { codes.push_back(static_cast<short>(s));}
      -
      453  if(codes.size() == 0) {
      -
      454  return os;
      -
      455 
      -
      456  } else {
      -
      457  os << "\033[";
      -
      458  os << codes[0];
      -
      459  for(size_t i=1; i < codes.size(); ++i) {
      -
      460  os << ";" << codes[i];
      -
      461  }
      -
      462  os << "m";
      -
      463  }
      -
      464  return os;
      -
      465  }
      -
      466 
      -
      468  friend std::ostream& operator<<(std::ostream& os, const typo& s)
      -
      469  {
      -
      470  if(s != typo::none) {
      -
      471  os << "\033[" << static_cast<short>(s) << "m";
      -
      472  }
      -
      473  return os;
      -
      474  }
      -
      475 
      -
      478  protected:
      -
      483  struct color {
      -
      484  ansi mode; // Not const to allow for the implicit copy assignemnt operator.
      -
      485 
      -
      487  enum class ground { // idem.
      -
      488  fore = 38,
      -
      489  back = 48
      -
      490  } type;
      -
      491 
      -
      497  color(ansi a, ground g) : mode(a), type(g) {}
      -
      498 
      -
      500  virtual bool is_set() const = 0;
      -
      501 
      -
      503  virtual std::ostream& print_on( std::ostream& os) const = 0;
      -
      504 
      -
      506  friend std::ostream& operator<<(std::ostream& os, const color& c)
      -
      507  {
      -
      508  if(c.is_set()) {
      -
      509  os << "\033[" << static_cast<short>(c.type) << ";" << static_cast<short>(c.mode) << ";";
      -
      510  c.print_on(os);
      -
      511  os << "m";
      -
      512  }
      -
      513  return os;
      -
      514  }
      -
      515  };
      -
      516 
      -
      517  // There is no color_16 because it would be the same as color_256, only with different indices,
      -
      518  // hence making it more complicated for the user to select the right constructor.
      -
      519  // Here, we just use enum for 16 colors, and indices for 256 colors.
      -
      520 
      -
      522  struct color_256 : public color {
      -
      526  short index;
      -
      527 
      -
      531  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
      -
      532 
      -
      538  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {assert(-1 <= i and i <= 255);}
      -
      539 
      -
      541  bool is_set() const {return index > -1;}
      -
      542 
      -
      544  std::ostream& print_on( std::ostream& os) const
      -
      545  {
      -
      546  os << index;
      -
      547  return os;
      -
      548  }
      -
      549  };
      -
      550 
      -
      552  struct fg_256 : public color_256 {
      -
      554  fg_256() : color_256(ground::fore) {}
      -
      555 
      -
      559  fg_256(const short f) : color_256(ground::fore, f) {}
      -
      560 
      -
      564  fg_256(const fg&) : color_256(ground::fore, -1) {}
      -
      565 
      -
      566  } fore_256;
      -
      567 
      -
      569  struct bg_256 : public color_256 {
      -
      571  bg_256() : color_256(ground::back) {}
      -
      572 
      -
      576  bg_256(const short b) : color_256(ground::back, b) {}
      -
      577 
      -
      581  bg_256(const bg&) : color_256(ground::back, -1) {}
      -
      582 
      -
      583  } back_256;
      -
      584 
      -
      586  struct color_16M : public color {
      -
      590  short red, green, blue;
      -
      591 
      -
      595  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
      -
      596 
      -
      604  color_16M(ground t, short r, short g, short b)
      -
      605  : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
      -
      606 
      -
      614  color_16M(ground t, const std::string& srgb) : color(ansi::colors_16M, t)
      -
      615  {
      -
      616  assert(srgb.size() == 7);
      -
      617  if(srgb.size() != 7) {
      -
      618  red = -1;
      -
      619  green = -1;
      -
      620  blue = -1;
      -
      621  } else {
      -
      622  char i = 0;
      -
      623  if(srgb.at(0) == '#') {
      -
      624  i = 1;
      -
      625  }
      -
      626  std::istringstream(srgb.substr(0+i,2)) >> std::hex >> red;
      -
      627  std::istringstream(srgb.substr(2+i,2)) >> std::hex >> green;
      -
      628  std::istringstream(srgb.substr(4+i,2)) >> std::hex >> blue;
      -
      629  }
      -
      630  assert(-1 <= red and red <= 255);
      -
      631  assert(-1 <= green and green <= 255);
      -
      632  assert(-1 <= blue and blue <= 255);
      -
      633  }
      -
      634 
      -
      636  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
      -
      637 
      -
      639  std::ostream& print_on( std::ostream& os) const
      -
      640  {
      -
      641  os << red << ";" << green << ";" << blue;
      -
      642  return os;
      -
      643  }
      -
      644  };
      -
      645 
      -
      647  struct fg_16M : public color_16M {
      -
      649  fg_16M() : color_16M(ground::fore) {}
      -
      650 
      -
      659  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
      -
      660 
      -
      667  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
      -
      668 
      -
      672  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
      -
      673 
      -
      674  } fore_16M;
      -
      675 
      -
      677  struct bg_16M : public color_16M {
      -
      679  bg_16M() : color_16M(ground::back) {}
      -
      680 
      -
      689  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
      -
      690 
      -
      697  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
      -
      698 
      -
      702  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
      -
      703 
      -
      704  } back_16M;
      -
      705 
      -
      708  public:
      -
      710  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
      -
      711 
      -
      714  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      715  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      716  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      717  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      718  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      719  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      724  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
      -
      725  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
      -
      726  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
      -
      731  fmt(const short fr, const short fg, const short fb,
      -
      732  const short gr, const short gg, const short gb,
      -
      733  typo s = typo::none)
      -
      734  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
      -
      735  fmt(fg,
      -
      736  const short gr, const short gg, const short gb,
      -
      737  typo s = typo::none)
      -
      738  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
      -
      739  fmt(const short fr, const short fg, const short fb,
      -
      740  bg, typo s = typo::none)
      -
      741  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      -
      742  fmt(const short fr, const short fg, const short fb,
      -
      743  typo s = typo::none)
      -
      744  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      -
      745 
      -
      746  fmt(const std::string& f, const std::string& b, typo s = typo::none)
      -
      747  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
      -
      748  fmt(fg, const std::string& b, typo s = typo::none)
      -
      749  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
      -
      750  fmt(const std::string& f, bg, typo s = typo::none)
      -
      751  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      -
      752  fmt(const std::string& f, typo s = typo::none)
      -
      753  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      -
      756  protected:
      -
      757 
      -
      759  std::ostream& print_on( std::ostream& os) const
      -
      760  {
      -
      761  if(mode == ansi::colors_16) {
      -
      762  // Print all in a single escape.
      -
      763  os << std::make_tuple(fore,back,style);
      -
      764 
      -
      765  } else {
      -
      766  // 256 or 16M: always print separated escapes for foreground/background.
      -
      767  if(mode == ansi::colors_256) {
      -
      768  os << fore_256;
      -
      769  os << back_256;
      -
      770 
      -
      771  } else if(mode == ansi::colors_16M) {
      -
      772  os << fore_16M;
      -
      773  os << back_16M;
      -
      774  }
      -
      775  // In any case, print the style separately.
      -
      776  os << style;
      -
      777  }
      -
      778  return os;
      -
      779  }
      -
      780 
      -
      781  public:
      -
      793  friend std::ostream& operator<<(std::ostream& os, const fmt& fmt)
      -
      794  {
      -
      795  return fmt.print_on(os);
      -
      796  }
      -
      797 
      -
      808  std::string operator()( const std::string& msg ) const
      -
      809  {
      -
      810  std::ostringstream os;
      -
      811  this->print_on(os);
      -
      812  fmt reset(fmt::typo::reset);
      -
      813  os << msg;
      -
      814  reset.print_on(os);
      -
      815  return os.str();
      -
      816  }
      -
      817 
      -
      820  std::string str() const
      -
      821  {
      -
      822  std::ostringstream os;
      -
      823  this->print_on(os);
      -
      824  return os.str();
      -
      825  }
      -
      826 
      -
      827  static fmt hash( const std::string& str, const std::vector<fmt> domain = {})
      -
      828  {
      -
      829  size_t h = std::hash<std::string>{}(str);
      -
      830  if(domain.size() == 0) {
      -
      831  return fmt(static_cast<short>(h % 256));
      -
      832  } else {
      -
      833  return fmt(domain[h % domain.size()]);
      -
      834  }
      -
      835  }
      -
      836  }; // fmt class
      -
      837 
      -
      843  public:
      -
      844  clutchlog(clutchlog const&) = delete;
      -
      845  void operator=(clutchlog const&) = delete;
      -
      846 
      -
      847  private:
      -
      848  clutchlog() :
      -
      849  // system, main, log
      - -
      851  _level_word({
      -
      852  {level::critical,"Critical"},
      -
      853  {level::error ,"Error"},
      -
      854  {level::warning ,"Warning"},
      -
      855  {level::progress,"Progress"},
      -
      856  {level::note ,"Note"},
      -
      857  {level::info ,"Info"},
      -
      858  {level::debug ,"Debug"},
      -
      859  {level::xdebug ,"XDebug"}
      -
      860  }),
      -
      861  _level_short({
      -
      862  {level::critical, "Crit"},
      -
      863  {level::error , "Erro"},
      -
      864  {level::warning , "Warn"},
      -
      865  {level::progress, "Prog"},
      -
      866  {level::note , "Note"},
      -
      867  {level::info , "Info"},
      -
      868  {level::debug , "Dbug"},
      -
      869  {level::xdebug , "XDbg"}
      -
      870  }),
      -
      871  _level_fmt({
      -
      872  {level::critical,fmt(fmt::fg::red, fmt::typo::underline)},
      -
      873  {level::error ,fmt(fmt::fg::red, fmt::typo::bold)},
      -
      874  {level::warning ,fmt(fmt::fg::magenta, fmt::typo::bold)},
      -
      875  {level::progress,fmt()},
      -
      876  {level::note ,fmt()},
      -
      877  {level::info ,fmt()},
      -
      878  {level::debug ,fmt()},
      -
      879  {level::xdebug ,fmt()}
      -
      880  }),
      - - -
      883  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      -
      884  _hfill_char(clutchlog::default_hfill_char),
      -
      885  _hfill_fmt(fmt::fg::none),
      -
      886  _hfill_max(clutchlog::default_hfill_max),
      -
      887  _hfill_min(clutchlog::default_hfill_min),
      -
      888  #endif
      -
      889  _out(&std::clog),
      -
      890  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      891  _depth(std::numeric_limits<size_t>::max() - _strip_calls),
      -
      892  _depth_mark(clutchlog::default_depth_mark),
      -
      893  #endif
      -
      894  _stage(level::error),
      -
      895  _in_file(".*"),
      -
      896  _in_func(".*"),
      -
      897  _in_line(".*"),
      -
      898  // Empty vectors by default:
      -
      899  // _filehash_fmts
      -
      900  // _funchash_fmts
      -
      901  // _depth_fmts
      -
      902  _filename(filename::path)
      -
      903  {
      -
      904  // Reverse the level->word map into a word->level map.
      -
      905  for(auto& lw : _level_word) {
      -
      906  _word_level[lw.second] = lw.first;
      -
      907  }
      -
      908 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      -
      909  struct winsize w;
      -
      910  ioctl(STDERR_FILENO, TIOCGWINSZ, &w);
      -
      911  _nb_columns = std::max(std::min((size_t)w.ws_col, default_hfill_max), default_hfill_min);
      -
      912 #endif
      -
      913  }
      -
      914 
      -
      915  protected:
      -
      917  size_t _strip_calls;
      -
      919  const std::map<level,std::string> _level_word;
      -
      921  std::map<std::string,level> _word_level;
      -
      923  std::map<level,std::string> _level_short;
      -
      925  std::map<level,fmt> _level_fmt;
      -
      927  std::string _format_log;
      -
      929  std::string _format_dump;
      -
      930  #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      -
      931 
      -
      932  char _hfill_char;
      -
      934  fmt _hfill_fmt;
      -
      936  size_t _hfill_max;
      -
      938  size_t _hfill_min;
      -
      939  #endif
      -
      940 
      -
      941  std::ostream* _out;
      -
      942  #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      943 
      -
      944  size_t _depth;
      -
      946  std::string _depth_mark;
      -
      947  #endif
      -
      948 
      - -
      951  std::regex _in_file;
      -
      953  std::regex _in_func;
      -
      955  std::regex _in_line;
      -
      956 
      -
      958  std::vector<fmt> _filehash_fmts;
      -
      960  std::vector<fmt> _funchash_fmts;
      -
      961 
      -
      962 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      963 
      -
      964  static const size_t _max_buffer = 4096;
      -
      966  std::vector<fmt> _depth_fmts;
      -
      967 #endif
      -
      968 
      -
      969 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      -
      970 
      -
      971  size_t _nb_columns;
      -
      972 #endif
      -
      973 
      - -
      978  public:
      -
      979 
      -
      983  void format(const std::string& format) {_format_log = format;}
      -
      986  std::string format() const {return _format_log;}
      -
      987 
      -
      989  void format_comment(const std::string& format) {_format_dump = format;}
      -
      991  std::string format_comment() const {return _format_dump;}
      -
      992 
      -
      994  void out(std::ostream& out) {_out = &out;}
      -
      996  std::ostream& out() {return *_out;}
      -
      997 
      -
      998 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      999  void depth(size_t d) {_depth = d;}
      -
      1002  size_t depth() const {return _depth;}
      -
      1003 
      -
      1005  void depth_mark(const std::string mark) {_depth_mark = mark;}
      -
      1007  std::string depth_mark() const {return _depth_mark;}
      -
      1008 
      -
      1010  void strip_calls(const size_t n) {_strip_calls = n;}
      -
      1012  size_t strip_calls() const {return _strip_calls;}
      -
      1013 #endif
      -
      1014 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      -
      1015  void hfill_mark(const char mark) {_hfill_char = mark;}
      -
      1018  char hfill_mark() const {return _hfill_char;}
      -
      1020  void hfill_style(fmt style) {_hfill_fmt = style;}
      -
      1025  template<class ... FMT>
      -
      1026  void hfill_style(FMT... styles) { this->hfill_style(fmt(styles...)); }
      -
      1028  fmt hfill_style() const {return _hfill_fmt;}
      -
      1030  void hfill_max(const size_t nmax) {_hfill_max = nmax;}
      -
      1032  size_t hfill_max() {return _hfill_max;}
      -
      1034  void hfill_min(const size_t nmin) {_hfill_min = nmin;}
      -
      1036  size_t hfill_min() {return _hfill_min;}
      -
      1037 #endif
      -
      1038 
      -
      1045  void filehash_styles(std::vector<fmt> styles) {_filehash_fmts = styles;}
      -
      1053  void funchash_styles(std::vector<fmt> styles) {_funchash_fmts = styles;}
      -
      1062  void depth_styles(std::vector<fmt> styles) {_depth_fmts = styles;}
      -
      1063 
      -
      1065  void threshold(level l) {_stage = l;}
      -
      1067  void threshold(const std::string& l) {_stage = this->level_of(l);}
      -
      1069  level threshold() const {return _stage;}
      -
      1071  const std::map<std::string,level>& levels() const { return _word_level;}
      -
      1072 
      -
      1077  level level_of(const std::string name)
      -
      1078  {
      -
      1079  const auto ilevel = _word_level.find(name);
      -
      1080  if( ilevel != std::end(_word_level)) {
      -
      1081  return ilevel->second;
      -
      1082  } else {
      -
      1083  throw std::out_of_range("'" + name + "' is not a valid log level name");
      -
      1084  }
      -
      1085  }
      -
      1086 
      -
      1088  void file(std::string file) {_in_file = file;}
      -
      1090  void func(std::string func) {_in_func = func;}
      -
      1092  void line(std::string line) {_in_line = line;}
      -
      1093 
      -
      1095  void location(
      -
      1096  const std::string& in_file,
      -
      1097  const std::string& in_function=".*",
      -
      1098  const std::string& in_line=".*"
      -
      1099  )
      -
      1100  {
      -
      1101  file(in_file);
      -
      1102  func(in_function);
      -
      1103  line(in_line);
      -
      1104  }
      -
      1105 
      -
      1110  template<class ... FMT>
      -
      1111  void style(level stage, FMT... styles) { this->style(stage,fmt(styles...)); }
      -
      1113  void style(level stage, fmt style) { _level_fmt.at(stage) = style; }
      -
      1115  fmt style(level stage) const { return _level_fmt.at(stage); }
      -
      1116 
      -
      1118  void filename(filename f) {_filename = f;}
      -
      1119 
      -
      1122  public:
      -
      1123 
      -
      1127  struct scope_t {
      -
      1130  bool matches;
      - -
      1133 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      1134 
      -
      1135  size_t depth;
      -
      1136 #endif
      -
      1137 
      -
      1138  bool there;
      - -
      1141  matches(false),
      -
      1142  stage(level::xdebug),
      - -
      1144  depth(0),
      -
      1145 #endif
      -
      1146  there(false)
      -
      1147  {}
      -
      1148  }; // scope_t
      -
      1149 
      -
      1150 
      - -
      1153  const level& stage,
      -
      1154  const std::string& file,
      -
      1155  const std::string& func,
      -
      1156  const size_t line
      -
      1157  ) const
      -
      1158  {
      -
      1159  scope_t scope; // False scope by default.
      -
      1160 
      -
      1161  /***** Log level stage *****/
      -
      1162  // Test stage first, because it's fastest.
      -
      1163  scope.stage = stage;
      -
      1164  if(not (scope.stage <= _stage)) {
      -
      1165  // Bypass useless computations if no match
      -
      1166  // because of the stage.
      -
      1167  return scope;
      -
      1168  }
      -
      1169 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      1170  /***** Stack depth *****/
      -
      1171  // Backtrace in second, quite fast.
      -
      1172  size_t stack_depth;
      -
      1173  void *buffer[_max_buffer];
      -
      1174  stack_depth = backtrace(buffer, _max_buffer);
      -
      1175  scope.depth = stack_depth;
      -
      1176  if(not (scope.depth <= _depth + _strip_calls)) {
      -
      1177  // Bypass if no match.
      -
      1178  return scope;
      -
      1179  }
      -
      1180 #endif
      -
      1181 
      -
      1182  /***** Location *****/
      -
      1183  // Location last, slowest.
      -
      1184  std::ostringstream sline; sline << line;
      -
      1185  scope.there =
      -
      1186  std::regex_search(file, _in_file)
      -
      1187  and std::regex_search(func, _in_func)
      -
      1188  and std::regex_search(sline.str(), _in_line);
      -
      1189 
      -
      1190  // No need to retest stage and depth, which are true here.
      -
      1191  scope.matches = scope.there;
      -
      1192 
      -
      1193  return scope;
      -
      1194  } // locate
      -
      1195 
      -
      1203  std::string replace(
      -
      1204  const std::string& form,
      -
      1205  const std::string& mark,
      -
      1206  const std::string& tag
      -
      1207  ) const
      -
      1208  {
      -
      1209  // Useless debug code, unless something fancy would be done with name tags.
      -
      1210  // std::regex re;
      -
      1211  // try {
      -
      1212  // re = std::regex(mark);
      -
      1213  //
      -
      1214  // } catch(const std::regex_error& e) {
      -
      1215  // std::cerr << "ERROR with a regular expression \"" << mark << "\": ";
      -
      1216  // switch(e.code()) {
      -
      1217  // case std::regex_constants::error_collate:
      -
      1218  // std::cerr << "the expression contains an invalid collating element name";
      -
      1219  // break;
      -
      1220  // case std::regex_constants::error_ctype:
      -
      1221  // std::cerr << "the expression contains an invalid character class name";
      -
      1222  // break;
      -
      1223  // case std::regex_constants::error_escape:
      -
      1224  // std::cerr << "the expression contains an invalid escaped character or a trailing escape";
      -
      1225  // break;
      -
      1226  // case std::regex_constants::error_backref:
      -
      1227  // std::cerr << "the expression contains an invalid back reference";
      -
      1228  // break;
      -
      1229  // case std::regex_constants::error_brack:
      -
      1230  // std::cerr << "the expression contains mismatched square brackets ('[' and ']')";
      -
      1231  // break;
      -
      1232  // case std::regex_constants::error_paren:
      -
      1233  // std::cerr << "the expression contains mismatched parentheses ('(' and ')')";
      -
      1234  // break;
      -
      1235  // case std::regex_constants::error_brace:
      -
      1236  // std::cerr << "the expression contains mismatched curly braces ('{' and '}')";
      -
      1237  // break;
      -
      1238  // case std::regex_constants::error_badbrace:
      -
      1239  // std::cerr << "the expression contains an invalid range in a {} expression";
      -
      1240  // break;
      -
      1241  // case std::regex_constants::error_range:
      -
      1242  // std::cerr << "the expression contains an invalid character range (e.g. [b-a])";
      -
      1243  // break;
      -
      1244  // case std::regex_constants::error_space:
      -
      1245  // std::cerr << "there was not enough memory to convert the expression into a finite state machine";
      -
      1246  // break;
      -
      1247  // case std::regex_constants::error_badrepeat:
      -
      1248  // std::cerr << "one of *?+{ was not preceded by a valid regular expression";
      -
      1249  // break;
      -
      1250  // case std::regex_constants::error_complexity:
      -
      1251  // std::cerr << "the complexity of an attempted match exceeded a predefined level";
      -
      1252  // break;
      -
      1253  // case std::regex_constants::error_stack:
      -
      1254  // std::cerr << "there was not enough memory to perform a match";
      -
      1255  // break;
      -
      1256  // default:
      -
      1257  // std::cerr << "unknown error";
      -
      1258  // }
      -
      1259  // std::cerr << std::endl;
      -
      1260  // throw;
      -
      1261  // } // catch
      -
      1262 
      -
      1263  const std::regex re(mark);
      -
      1264  return std::regex_replace(form, re, tag);
      -
      1265  }
      -
      1266 
      -
      1268  std::string replace(
      -
      1269  const std::string& form,
      -
      1270  const std::string& mark,
      -
      1271  const size_t tag
      -
      1272  ) const
      -
      1273  {
      -
      1274  std::ostringstream stag; stag << tag;
      -
      1275  return replace(form, mark, stag.str());
      -
      1276  }
      -
      1277 
      -
      1279  std::string format(
      -
      1280  std::string row,
      -
      1281  const std::string& what,
      - -
      1283  const std::string& name,
      -
      1284 #endif
      -
      1285  const level& stage,
      -
      1286  const std::string& file,
      -
      1287  const std::string& func,
      -
      1288  const size_t line
      - -
      1290  ,
      -
      1291  const size_t depth
      -
      1292 #endif
      -
      1293  ) const
      -
      1294  {
      -
      1295  row = replace(row, "\\{msg\\}", what);
      -
      1296 
      -
      1297  const std::filesystem::path filepath(file);
      -
      1298  assert(filepath.is_absolute());
      -
      1299  std::string filename;
      -
      1300  std::filesystem::path::iterator ip = filepath.end();
      -
      1301  std::advance(ip, -2);
      -
      1302  switch(_filename) {
      -
      1303  case filename::base:
      -
      1304  filename = filepath.filename().string();
      -
      1305  break;
      -
      1306  case filename::dir:
      -
      1307  filename = ip->string();
      -
      1308  break;
      -
      1309  case filename::dirbase:
      -
      1310  filename = (*ip / filepath.filename()).string();
      -
      1311  break;
      -
      1312  case filename::stem:
      -
      1313  filename = filepath.stem().string();
      -
      1314  break;
      -
      1315  case filename::dirstem:
      -
      1316  filename = (*ip / filepath.stem()).string();
      -
      1317  break;
      -
      1318  case filename::path:
      -
      1319  default:
      -
      1320  filename = file;
      -
      1321  break;
      -
      1322  }
      -
      1323  row = replace(row, "\\{file\\}", filename);
      -
      1324 
      -
      1325 
      -
      1326  row = replace(row, "\\{func\\}", func);
      -
      1327  row = replace(row, "\\{line\\}", line);
      -
      1328 
      -
      1329  row = replace(row, "\\{level\\}", _level_word.at(stage));
      -
      1330  std::string letter(1, _level_word.at(stage).at(0)); // char -> string
      -
      1331  row = replace(row, "\\{level_letter\\}", letter);
      -
      1332  row = replace(row, "\\{level_short\\}", _level_short.at(stage));
      -
      1333 
      -
      1334 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      1335  size_t actual_depth = depth - _strip_calls;
      -
      1336  row = replace(row, "\\{name\\}", name);
      -
      1337  row = replace(row, "\\{depth\\}", actual_depth);
      -
      1338 
      -
      1339  if(_depth_fmts.size() == 0) {
      -
      1340  row = replace(row, "\\{depth_fmt\\}", fmt(actual_depth % 256).str() );
      -
      1341 
      -
      1342  std::ostringstream chevrons;
      -
      1343  for(size_t i = 0; i < actual_depth; ++i) {
      -
      1344  chevrons << _depth_mark;
      -
      1345  }
      -
      1346  row = replace(row, "\\{depth_marks\\}", chevrons.str());
      -
      1347 
      -
      1348  } else {
      -
      1349  row = replace(row, "\\{depth_fmt\\}",
      -
      1350  _depth_fmts[std::min(actual_depth,_depth_fmts.size()-1)].str() );
      -
      1351 
      -
      1352  std::ostringstream chevrons;
      -
      1353  for(size_t i = 0; i < actual_depth; ++i) {
      -
      1354  chevrons << _depth_fmts[std::min(i+1,_depth_fmts.size()-1)].str()
      -
      1355  << _depth_mark;
      -
      1356  }
      -
      1357  row = replace(row, "\\{depth_marks\\}", chevrons.str());
      -
      1358  }
      -
      1359 #endif
      -
      1360  row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str());
      -
      1361  row = replace(row, "\\{filehash_fmt\\}", fmt::hash(file, _filehash_fmts).str() );
      -
      1362  row = replace(row, "\\{funchash_fmt\\}", fmt::hash(func, _funchash_fmts).str() );
      -
      1363 
      -
      1364 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      -
      1365  // hfill is replaced last to allow for correct line width estimation.
      -
      1366  const std::string raw_row = replace(row, "\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]", "");
      -
      1367  const std::string hfill_tag = "{hfill}";
      -
      1368  const size_t hfill_pos = row.find(hfill_tag);
      -
      1369  const size_t raw_hfill_pos = raw_row.find(hfill_tag);
      -
      1370  const size_t nb_columns = std::max(std::min((size_t)_nb_columns, _hfill_max), _hfill_min);
      -
      1371  if(hfill_pos != std::string::npos) {
      -
      1372  assert(raw_hfill_pos != std::string::npos);
      -
      1373  if(nb_columns > 0) {
      -
      1374  const size_t left_len = raw_hfill_pos;
      -
      1375  const size_t right_len = raw_row.size() - raw_hfill_pos - hfill_tag.size();
      -
      1376  if(right_len+left_len > nb_columns) {
      -
      1377  // The right part would go over the terminal width: add a new row.
      -
      1378  if(right_len < nb_columns) {
      -
      1379  // There is room for the right part on a new line.
      -
      1380  const std::string hfill(std::max((size_t)0, nb_columns-right_len), _hfill_char);
      -
      1381  const std::string hfill_styled = _hfill_fmt(hfill);
      -
      1382  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
      -
      1383  } else {
      -
      1384  // Right part still goes over columns: let it go.
      -
      1385  const std::string hfill(1, _hfill_char);
      -
      1386  const std::string hfill_styled = _hfill_fmt(hfill);
      -
      1387  row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
      -
      1388  }
      -
      1389  } else {
      -
      1390  // There is some space in between left and right parts.
      -
      1391  const std::string hfill(std::max((size_t)0, nb_columns - (right_len+left_len)), _hfill_char);
      -
      1392  const std::string hfill_styled = _hfill_fmt(hfill);
      -
      1393  row = replace(row, "\\{hfill\\}", hfill_styled);
      -
      1394  }
      -
      1395  } else {
      -
      1396  // We don't know the terminal width.
      -
      1397  const std::string hfill(1, _hfill_char);
      -
      1398  const std::string hfill_styled = _hfill_fmt(hfill);
      -
      1399  row = replace(row, "\\{hfill\\}", hfill_styled);
      -
      1400  }
      -
      1401  }
      -
      1402 #else
      -
      1403  // We cannot know the terminal width.
      -
      1404  const std::string hfill(1, _hfill_char);
      -
      1405  const std::string hfill_styled = _hfill_fmt(hfill);
      -
      1406  row = replace(row, "\\{hfill\\}", hfill_styled);
      -
      1407 #endif
      -
      1408  return _level_fmt.at(stage)(row);
      -
      1409  }
      -
      1410 
      -
      1412  void log(
      -
      1413  const level& stage,
      -
      1414  const std::string& what,
      -
      1415  const std::string& file, const std::string& func, const size_t line,
      -
      1416  const size_t depth_delta = 0
      -
      1417  ) const
      -
      1418  {
      -
      1419  scope_t scope = locate(stage, file, func, line);
      -
      1420 
      -
      1421  if(scope.matches) {
      -
      1422 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      1423  *_out << format(_format_log, what, basename(getenv("_")),
      -
      1424  stage, file, func,
      -
      1425  line, scope.depth + depth_delta );
      -
      1426 #else
      -
      1427  *_out << format(_format_log, what,
      -
      1428  stage, file, func,
      -
      1429  line );
      -
      1430 #endif
      -
      1431  _out->flush();
      -
      1432  } // if scopes.matches
      -
      1433  }
      -
      1434 
      -
      1436  template<class In>
      -
      1437  void dump(
      -
      1438  const level& stage,
      -
      1439  const In container_begin, const In container_end,
      -
      1440  const std::string& file, const std::string& func, const size_t line,
      -
      1441  const std::string& filename_template = "dump_{n}.dat",
      -
      1442  const std::string sep = dump_default_sep
      -
      1443  ) const
      -
      1444  {
      -
      1445  scope_t scope = locate(stage, file, func, line);
      -
      1446 
      -
      1447  if(scope.matches) {
      -
      1448  const std::string tag = "\\{n\\}";
      -
      1449  const std::regex re(tag);
      -
      1450  std::string outfile = "";
      -
      1451 
      -
      1452  // If the file name template has the {n} tag.
      -
      1453  if(std::regex_search(filename_template, re)) {
      -
      1454  // Increment n until a free one is found.
      -
      1455  size_t n = 0;
      -
      1456  do {
      -
      1457  outfile = replace(filename_template, tag, n);
      -
      1458  n++;
      -
      1459  } while( fs::exists( outfile ) );
      -
      1460 
      -
      1461  } else {
      -
      1462  // Use the parameter as is.
      -
      1463  outfile = filename_template;
      -
      1464  }
      -
      1465 
      -
      1466  std::ofstream fd(outfile);
      -
      1467 
      -
      1468  if(_format_dump.size() > 0) {
      -
      1469 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      1470  fd << format(_format_dump, "", basename(getenv("_")),
      -
      1471  stage, file, func,
      -
      1472  line, scope.depth );
      -
      1473 #else
      -
      1474  fd << format(_format_dump, "",
      -
      1475  stage, file, func,
      -
      1476  line );
      -
      1477 #endif
      -
      1478  fd << sep; // sep after comment line.
      -
      1479  }
      -
      1480 
      -
      1481  std::copy(container_begin, container_end,
      -
      1482  std::ostream_iterator<typename In::value_type>(fd, sep.c_str()));
      -
      1483 
      -
      1484  fd.close();
      -
      1485  } // if scopes.matches
      -
      1486  }
      -
      1487 
      -
      1489 };
      -
      1490 
      -
      1493 #else // not WITH_CLUTCHLOG
      -
      1494 
      -
      1495 
      -
      1496 /**********************************************************************
      -
      1497  * Fake implementation
      -
      1498  **********************************************************************/
      -
      1499 
      -
      1500 // Equivalent class with empty methods, will be optimized out
      -
      1501 // while allowing to actually have calls implemented without WITH_CLUTCHLOG guards.
      -
      1502 #pragma GCC diagnostic push
      -
      1503 #pragma GCC diagnostic ignored "-Wreturn-type"
      -
      1504 class clutchlog
      -
      1505 {
      -
      1506  public:
      -
      1507  static clutchlog& logger() {}
      -
      1508  enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
      -
      1509  enum filename {path, base, dir, dirbase, stem, dirstem};
      -
      1510  class fmt {
      -
      1511  public:
      -
      1512  enum class ansi { colors_16, colors_256, colors_16M} mode;
      -
      1513  enum class typo { reset, bold, underline, inverse, none} style;
      -
      1514  enum class fg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none} fore;
      -
      1515  enum class bg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none } back;
      -
      1516  protected:
      -
      1517  friend std::ostream& operator<<(std::ostream&, const std::tuple<fg,bg,typo>&) {}
      -
      1518  friend std::ostream& operator<<(std::ostream&, const typo&) {}
      -
      1519  protected:
      -
      1520  struct color {
      -
      1521  ansi mode;
      -
      1522  enum class ground { fore, back } type;
      -
      1523  color(ansi a, ground g) : mode(a), type(g) {}
      -
      1524  virtual bool is_set() const = 0;
      -
      1525  virtual std::ostream& print_on( std::ostream&) const = 0;
      -
      1526  friend std::ostream& operator<<(std::ostream&, const color&) {}
      -
      1527  };
      -
      1528  struct color_256 : public color {
      -
      1529  short index;
      -
      1530  color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
      -
      1531  color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {}
      -
      1532  bool is_set() const {}
      -
      1533  std::ostream& print_on( std::ostream&) const {}
      -
      1534  };
      -
      1535  struct fg_256 : public color_256 {
      -
      1536  fg_256() : color_256(ground::fore) {}
      -
      1537  fg_256(const short f) : color_256(ground::fore, f) {}
      -
      1538  fg_256(const fg&) : color_256(ground::fore, -1) {}
      -
      1539  } fore_256;
      -
      1540  struct bg_256 : public color_256 {
      -
      1541  bg_256() : color_256(ground::back) {}
      -
      1542  bg_256(const short b) : color_256(ground::back, b) {}
      -
      1543  bg_256(const bg&) : color_256(ground::back, -1) {}
      -
      1544  } back_256;
      -
      1545  struct color_16M : public color {
      -
      1546  short red, green, blue;
      -
      1547  color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
      -
      1548  color_16M(ground t, short r, short g, short b) : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
      -
      1549  color_16M(ground t, const std::string&) : color(ansi::colors_16M, t) {}
      -
      1550  bool is_set() const {return red > -1 and green > -1 and blue > -1;}
      -
      1551  std::ostream& print_on( std::ostream&) const {}
      -
      1552  };
      -
      1553  struct fg_16M : public color_16M {
      -
      1554  fg_16M() : color_16M(ground::fore) {}
      -
      1555  fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
      -
      1556  fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
      -
      1557  fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
      -
      1558  } fore_16M;
      -
      1559  struct bg_16M : public color_16M {
      -
      1560  bg_16M() : color_16M(ground::back) {}
      -
      1561  bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
      -
      1562  bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
      -
      1563  bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
      -
      1564  } back_16M;
      -
      1565  public:
      -
      1566  fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
      -
      1567  fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      1568  fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      1569  fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      1570  fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      1571  fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      1572  fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      -
      1573  fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
      -
      1574  fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
      -
      1575  fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
      -
      1576  fmt(const short fr, const short fg, const short fb,
      -
      1577  const short gr, const short gg, const short gb,
      -
      1578  typo s = typo::none)
      -
      1579  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
      -
      1580  fmt(fg,
      -
      1581  const short gr, const short gg, const short gb,
      -
      1582  typo s = typo::none)
      -
      1583  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
      -
      1584  fmt(const short fr, const short fg, const short fb,
      -
      1585  bg, typo s = typo::none)
      -
      1586  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      -
      1587  fmt(const short fr, const short fg, const short fb,
      -
      1588  typo s = typo::none)
      -
      1589  : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      -
      1590 
      -
      1591  fmt(const std::string& f, const std::string& b, typo s = typo::none)
      -
      1592  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
      -
      1593  fmt(fg, const std::string& b, typo s = typo::none)
      -
      1594  : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
      -
      1595  fmt(const std::string& f, bg, typo s = typo::none)
      -
      1596  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      -
      1597  fmt(const std::string& f, typo s = typo::none)
      -
      1598  : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      -
      1599  protected:
      -
      1600  std::ostream& print_on( std::ostream&) const {}
      -
      1601  public:
      -
      1602  friend std::ostream& operator<<(std::ostream&, const fmt&) {}
      -
      1603  std::string operator()( const std::string&) const {}
      -
      1604  std::string str() const {}
      -
      1605  static fmt hash( const std::string&, const std::vector<fmt>) {}
      -
      1606  };
      -
      1607  public:
      -
      1608  clutchlog(clutchlog const&) = delete;
      -
      1609  void operator=(clutchlog const&) = delete;
      -
      1610  private:
      -
      1611  clutchlog() {}
      -
      1612  protected:
      -
      1613  struct scope_t {};
      -
      1614  scope_t locate(
      -
      1615  const level&,
      -
      1616  const std::string&,
      -
      1617  const std::string&,
      -
      1618  const size_t
      -
      1619  ) const
      -
      1620  {}
      -
      1621  public:
      -
      1622  void format(const std::string&) {}
      -
      1623  std::string format() const {}
      -
      1624 
      -
      1625  void format_comment(const std::string&) {}
      -
      1626  std::string format_comment() const {}
      -
      1627 
      -
      1628  void out(std::ostream&) {}
      -
      1629  std::ostream& out() {}
      -
      1630 
      -
      1631 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      -
      1632  void depth(size_t) {}
      -
      1633  size_t depth() const {}
      -
      1634 
      -
      1635  void depth_mark(const std::string) {}
      -
      1636  std::string depth_mark() const {}
      -
      1637  void strip_calls(const size_t) {}
      -
      1638  size_t strip_calls() const {}
      -
      1639 #endif
      -
      1640 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      -
      1641  void hfill_mark(const char) {}
      -
      1642  char hfill_mark() const {}
      -
      1643  void hfill_fmt(fmt) {}
      -
      1644  fmt hfill_fmt() const {}
      -
      1645  void hfill_min(const size_t) {}
      -
      1646  size_t hfill_min() {}
      -
      1647  void hfill_max(const size_t) {}
      -
      1648  size_t hfill_max() {}
      -
      1649 #endif
      -
      1650  void filehash_styles(std::vector<fmt> ) {}
      -
      1651  void funchash_styles(std::vector<fmt> ) {}
      -
      1652  void depth_styles(std::vector<fmt>) {}
      -
      1653 
      -
      1654  void threshold(level) {}
      -
      1655  void threshold(const std::string&) {}
      -
      1656  level threshold() const {}
      -
      1657  const std::map<std::string,level> levels() const {}
      -
      1658  level level_of(const std::string) {}
      -
      1659 
      -
      1660  void file(std::string) {}
      -
      1661  void func(std::string) {}
      -
      1662  void line(std::string) {}
      -
      1663 
      -
      1664 #pragma GCC diagnostic push
      -
      1665 #pragma GCC diagnostic ignored "-Wunused-parameter"
      -
      1666  void location(
      -
      1667  const std::string&,
      -
      1668  const std::string& in_function=".*",
      -
      1669  const std::string& in_line=".*"
      -
      1670  )
      -
      1671  {}
      -
      1672 #pragma GCC diagnostic pop
      -
      1673  template<class ... FMT>
      -
      1674  void style(level, FMT...) {}
      -
      1675  void style(level, fmt) {}
      -
      1676  fmt style(level) const {}
      -
      1677  void filename(filename) {}
      -
      1678  public:
      -
      1679  std::string replace(
      -
      1680  const std::string&,
      -
      1681  const std::string&,
      -
      1682  const std::string&
      -
      1683  ) const
      -
      1684  {}
      -
      1685 
      -
      1686  std::string replace(
      -
      1687  const std::string&,
      -
      1688  const std::string&,
      -
      1689  const size_t
      -
      1690  ) const
      -
      1691  {}
      -
      1692 
      -
      1693  std::string format(
      -
      1694  std::string,
      -
      1695  const std::string&,
      - -
      1697  const std::string&,
      -
      1698 #endif
      -
      1699  const level&,
      -
      1700  const std::string&,
      -
      1701  const std::string&,
      -
      1702  const size_t
      - -
      1704  ,
      -
      1705  const size_t
      -
      1706 #endif
      -
      1707  ) const
      -
      1708  {}
      -
      1709 
      -
      1710  void log(
      -
      1711  const level&,
      -
      1712  const std::string&,
      -
      1713  const std::string&, const std::string&, size_t
      -
      1714  ) const
      -
      1715  {}
      -
      1716 
      -
      1717  template<class In>
      -
      1718  void dump(
      -
      1719  const level&,
      -
      1720  const In, const In,
      -
      1721  const std::string&, const std::string&, size_t,
      -
      1722  const std::string&,
      -
      1723  const std::string
      -
      1724  ) const
      -
      1725  {}
      -
      1726 };
      -
      1727 #pragma GCC diagnostic pop
      -
      1728 #endif // WITH_CLUTCHLOG
      -
      1729 
      -
      1730 #endif // CLUTCHLOG_H
      +Go to the documentation of this file.
      1#pragma once
      +
      2#ifndef CLUTCHLOG_H
      +
      4#define CLUTCHLOG_H
      +
      5
      +
      7#include <ciso646>
      +
      8 #ifdef FSEXPERIMENTAL
      +
      9 #include <experimental/filesystem>
      +
      10 namespace fs = std::experimental::filesystem;
      +
      11#else
      +
      12 #include <filesystem>
      +
      13 namespace fs = std::filesystem;
      +
      14#endif
      +
      15
      +
      16#include <iterator>
      +
      17#include <iostream>
      +
      18#include <sstream>
      +
      19#include <fstream>
      +
      20#include <cassert>
      +
      21#include <cstdlib>
      +
      22#include <string>
      +
      23#include <limits>
      +
      24#include <regex>
      +
      25#include <map>
      +
      26
      +
      28#if __has_include(<execinfo.h>) && __has_include(<stdlib.h>) && __has_include(<libgen.h>)
      +
      29 #include <execinfo.h> // execinfo
      +
      30 #include <stdlib.h> // getenv
      +
      31 #include <libgen.h> // basename
      +
      32 #define CLUTCHLOG_HAVE_UNIX_SYSINFO 1
      +
      33#else
      +
      34 #define CLUTCHLOG_HAVE_UNIX_SYSINFO 0
      +
      35#endif
      +
      36
      +
      38#if __has_include(<sys/ioctl.h>) && __has_include(<stdio.h>) && __has_include(<unistd.h>)
      +
      39 #include <sys/ioctl.h>
      +
      40 #include <stdio.h>
      +
      41 #include <unistd.h>
      +
      42 #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL 1
      +
      43#else
      +
      44 #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL 0
      +
      45#endif
      +
      46
      +
      47
      +
      48/**********************************************************************
      +
      49 * Enable by default in Debug builds.
      +
      50 **********************************************************************/
      +
      51#ifndef WITH_CLUTCHLOG
      +
      52 #ifndef NDEBUG
      +
      54 #define WITH_CLUTCHLOG
      +
      55 #endif
      +
      56#endif
      +
      57
      +
      58/**********************************************************************
      +
      59 * Macros definitions
      +
      60 **********************************************************************/
      +
      61#ifdef WITH_CLUTCHLOG
      +
      62
      +
      66#ifndef CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG
      +
      68 #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG clutchlog::level::progress
      +
      69#endif // CLUTCHLOG_DEFAULT_DEPTH_BUILT
      +
      70
      +
      78#define CLUTCHLOC __FILE__, __FUNCTION__, __LINE__
      +
      79
      +
      81#ifndef NDEBUG
      +
      82 #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \
      +
      83 auto& clutchlog__logger = clutchlog::logger(); \
      +
      84 std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
      +
      85 clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
      +
      86 } while(0)
      +
      87#else // not Debug build.
      +
      88 #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do { \
      +
      89 if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      +
      90 auto& clutchlog__logger = clutchlog::logger(); \
      +
      91 std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
      +
      92 clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
      +
      93 } \
      +
      94 } while(0)
      +
      95#endif // NDEBUG
      +
      96
      +
      98#ifndef NDEBUG
      +
      99 #define CLUTCHLOG( LEVEL, WHAT ) \
      +
      100 CLUTCHLOGD(LEVEL, WHAT, 0)
      +
      101#else // not Debug build.
      +
      102 #define CLUTCHLOG( LEVEL, WHAT ) \
      +
      103 CLUTCHLOGD(LEVEL, WHAT, 0)
      +
      104#endif // NDEBUG
      +
      105
      +
      107#ifndef NDEBUG
      +
      108 #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
      +
      109 auto& clutchlog__logger = clutchlog::logger(); \
      +
      110 clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
      +
      111 CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
      +
      112 } while(0)
      +
      113#else // not Debug build.
      +
      114 #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do { \
      +
      115 if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      +
      116 auto& clutchlog__logger = clutchlog::logger(); \
      +
      117 clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
      +
      118 CLUTCHLOC, FILENAME, CLUTCHDUMP_DEFAULT_SEP); \
      +
      119 } \
      +
      120 } while(0)
      +
      121#endif // NDEBUG
      +
      122
      +
      124#ifndef NDEBUG
      +
      125 #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
      +
      126 auto& clutchlog__logger = clutchlog::logger(); \
      +
      127 clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      +
      128 if(clutchlog__scope.matches) { \
      +
      129 FUNC(__VA_ARGS__); \
      +
      130 } \
      +
      131 } while(0)
      +
      132#else // not Debug build.
      +
      133 #define CLUTCHFUNC( LEVEL, FUNC, ... ) do { \
      +
      134 if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      +
      135 auto& clutchlog__logger = clutchlog::logger(); \
      +
      136 clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      +
      137 if(clutchlog__scope.matches) { \
      +
      138 FUNC(__VA_ARGS__); \
      +
      139 } \
      +
      140 } \
      +
      141 } while(0)
      +
      142#endif // NDEBUG
      +
      143
      +
      145#ifndef NDEBUG
      +
      146 #define CLUTCHCODE( LEVEL, ... ) do { \
      +
      147 auto& clutchlog__logger = clutchlog::logger(); \
      +
      148 clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      +
      149 if(clutchlog__scope.matches) { \
      +
      150 __VA_ARGS__ \
      +
      151 } \
      +
      152 } while(0)
      +
      153#else // not Debug build.
      +
      154 #define CLUTCHCODE( LEVEL, CODE ) do { \
      +
      155 if(clutchlog::level::LEVEL <= CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG) { \
      +
      156 auto& clutchlog__logger = clutchlog::logger(); \
      +
      157 clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      +
      158 if(clutchlog__scope.matches) { \
      +
      159 CODE \
      +
      160 } \
      +
      161 } \
      +
      162 } while(0)
      +
      163#endif // NDEBUG
      +
      164
      +
      167#else // not WITH_CLUTCHLOG
      +
      168 // Disabled macros can still be called in Release builds.
      +
      169 #define CLUTCHLOG( LEVEL, WHAT ) do {/*nothing*/} while(0)
      +
      170 #define CLUTCHLOGD( LEVEL, WHAT, DEPTH_DELTA ) do {/*nothing*/} while(0)
      +
      171 #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do {/*nothing*/} while(0)
      +
      172 #define CLUTCHFUNC( LEVEL, FUNC, ... ) do {/*nothing*/} while(0)
      +
      173 #define CLUTCHCODE( LEVEL, CODE ) do {/*nothing*/} while(0)
      +
      174#endif // WITH_CLUTCHLOG
      +
      175
      +
      176/**********************************************************************
      +
      177 * Implementation
      +
      178 **********************************************************************/
      +
      179
      +
      180#ifdef WITH_CLUTCHLOG
      + +
      189{
      +
      190 protected:
      +
      191
      +
      196 #ifndef NDEBUG
      +
      197 #ifndef CLUTCHLOG_DEFAULT_FORMAT
      +
      199 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 // Enables: name, depth and depth_marks
      +
      200 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1 // Enables: hfill
      +
      201 #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func} @ {file}:{line}\n"
      +
      202 #else
      +
      203 #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
      +
      204 #endif
      +
      205 #else
      +
      206 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      +
      207 #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg} {hfill} {func} @ {file}:{line}\n"
      +
      208 #else
      +
      209 #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
      +
      210 #endif
      +
      211 #endif
      +
      212 #endif
      +
      213 #else
      +
      214 #ifndef CLUTCHLOG_DEFAULT_FORMAT
      +
      216 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      217 #define CLUTCHLOG_DEFAULT_FORMAT "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func}\n"
      +
      218 #else
      +
      219 #define CLUTCHLOG_DEFAULT_FORMAT "{level_letter} {msg}\t\t\t\t\t{func}\n"
      +
      220 #endif
      +
      221 #endif
      +
      222 #endif
      +
      224 static inline std::string default_format = CLUTCHLOG_DEFAULT_FORMAT;
      +
      225
      +
      226 #ifndef NDEBUG
      +
      227 #ifndef CLUTCHDUMP_DEFAULT_FORMAT
      +
      229 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      230 #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth}) @ {file}:{line}"
      +
      231 #else
      +
      232 #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func} @ {file}:{line}"
      +
      233 #endif
      +
      234 #endif // CLUTCHDUMP_DEFAULT_FORMAT
      +
      235 #else
      +
      236 #ifndef CLUTCHDUMP_DEFAULT_FORMAT
      +
      238 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      239 #define CLUTCHDUMP_DEFAULT_FORMAT "# [{name}] {level} in {func} (at depth {depth})"
      +
      240 #else
      +
      241 #define CLUTCHDUMP_DEFAULT_FORMAT "# {level} in {func}"
      +
      242 #endif
      +
      243 #endif // CLUTCHDUMP_DEFAULT_FORMAT
      +
      244 #endif
      + +
      247
      +
      248 #ifndef CLUTCHDUMP_DEFAULT_SEP
      +
      250 #define CLUTCHDUMP_DEFAULT_SEP "\n"
      +
      251 #endif // CLUTCHDUMP_DEFAULT_SEP
      +
      253 static inline std::string dump_default_sep = CLUTCHDUMP_DEFAULT_SEP;
      +
      254
      +
      255 #ifndef CLUTCHLOG_DEFAULT_DEPTH_MARK
      +
      257 #define CLUTCHLOG_DEFAULT_DEPTH_MARK ">"
      +
      258 #endif // CLUTCHLOG_DEFAULT_DEPTH_MARK
      +
      260 static inline std::string default_depth_mark = CLUTCHLOG_DEFAULT_DEPTH_MARK;
      +
      261
      +
      262 #ifndef CLUTCHLOG_STRIP_CALLS
      +
      264 #define CLUTCHLOG_STRIP_CALLS 5
      +
      265 #endif // CLUTCHLOG_STRIP_CALLS
      +
      267 static inline unsigned int default_strip_calls = CLUTCHLOG_STRIP_CALLS;
      +
      268
      +
      269 #ifndef CLUTCHLOG_DEFAULT_HFILL_MARK
      +
      271 #define CLUTCHLOG_DEFAULT_HFILL_MARK '.'
      +
      272 #endif // CLUTCHLOG_DEFAULT_HFILL_MARK
      +
      274 static inline char default_hfill_char = CLUTCHLOG_DEFAULT_HFILL_MARK;
      +
      275
      +
      276
      +
      277 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      +
      278 #ifndef CLUTCHLOG_DEFAULT_HFILL_MAX
      +
      279 #define CLUTCHLOG_DEFAULT_HFILL_MAX 300
      +
      280 #endif
      +
      281 #ifndef CLUTCHLOG_DEFAULT_HFILL_MIN
      +
      282 #define CLUTCHLOG_DEFAULT_HFILL_MIN 150
      +
      283 #endif
      +
      284 #endif
      +
      286 static inline size_t default_hfill_max = CLUTCHLOG_DEFAULT_HFILL_MAX;
      +
      288 static inline size_t default_hfill_min = CLUTCHLOG_DEFAULT_HFILL_MIN;
      +
      289
      +
      290 // NOTE: there is no CLUTCHLOG_HFILL_STYLE for defaulting,
      +
      291 // but you can still set `hfill_style(...)` on the logger singleton.
      +
      292 /* @} DefaultConfig */
      +
      293 /* @} */
      +
      294
      +
      295
      +
      296 public:
      +
      297
      + +
      308 {
      +
      309 static clutchlog instance;
      +
      310 return instance;
      +
      311 }
      +
      312
      +
      314 enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
      +
      315
      +
      317 enum filename {path, base, dir, dirbase, stem, dirstem};
      +
      318
      +
      380 class fmt {
      +
      381 public:
      +
      383 enum class ansi {
      +
      385 colors_16 = -1, // Not supposed to be casted.
      +
      387 colors_256 = 5, // Casted as short in color::operator<<.
      +
      389 colors_16M = 2 // Casted as short in color::operator<<
      + +
      391
      +
      393 enum class typo {
      +
      394 reset = 0,
      +
      395 bold = 1,
      +
      396 underline = 4,
      +
      397 inverse = 7,
      +
      398 none = -1
      + +
      400
      +
      404 enum class fg {
      +
      405 black = 30,
      +
      406 red = 31,
      +
      407 green = 32,
      +
      408 yellow = 33,
      +
      409 blue = 34,
      +
      410 magenta = 35,
      +
      411 cyan = 36,
      +
      412 white = 37,
      +
      413 bright_black = 90,
      +
      414 bright_red = 91,
      +
      415 bright_green = 92,
      +
      416 bright_yellow = 93,
      +
      417 bright_blue = 94,
      +
      418 bright_magenta = 95,
      +
      419 bright_cyan = 96,
      +
      420 bright_white = 97,
      +
      421 none = -1
      + +
      423
      +
      425 enum class bg {
      +
      426 black = 40,
      +
      427 red = 41,
      +
      428 green = 42,
      +
      429 yellow = 43,
      +
      430 blue = 44,
      +
      431 magenta = 45,
      +
      432 cyan = 46,
      +
      433 white = 47,
      +
      434 bright_black = 100,
      +
      435 bright_red = 101,
      +
      436 bright_green = 102,
      +
      437 bright_yellow = 103,
      +
      438 bright_blue = 104,
      +
      439 bright_magenta = 105,
      +
      440 bright_cyan = 106,
      +
      441 bright_white = 107,
      +
      442 none = -1
      + +
      444
      +
      445 protected:
      +
      447 friend std::ostream& operator<<(std::ostream& os, const std::tuple<fg,bg,typo>& fbs)
      +
      448 {
      +
      449 auto [f,b,s] = fbs;
      +
      450 std::vector<short> codes; codes.reserve(3);
      +
      451 if(f != fg::none) { codes.push_back(static_cast<short>(f));}
      +
      452 if(b != bg::none) { codes.push_back(static_cast<short>(b));}
      +
      453 if(s != typo::none) { codes.push_back(static_cast<short>(s));}
      +
      454 if(codes.size() == 0) {
      +
      455 return os;
      +
      456
      +
      457 } else {
      +
      458 os << "\033[";
      +
      459 os << codes[0];
      +
      460 for(size_t i=1; i < codes.size(); ++i) {
      +
      461 os << ";" << codes[i];
      +
      462 }
      +
      463 os << "m";
      +
      464 }
      +
      465 return os;
      +
      466 }
      +
      467
      +
      469 friend std::ostream& operator<<(std::ostream& os, const typo& s)
      +
      470 {
      +
      471 if(s != typo::none) {
      +
      472 os << "\033[" << static_cast<short>(s) << "m";
      +
      473 }
      +
      474 return os;
      +
      475 }
      +
      476
      +
      479 protected:
      +
      484 struct color {
      +
      485 ansi mode; // Not const to allow for the implicit copy assignemnt operator.
      +
      486
      +
      488 enum class ground { // idem.
      +
      489 fore = 38,
      +
      490 back = 48
      + +
      492
      +
      498 color(ansi a, ground g) : mode(a), type(g) {}
      +
      499
      +
      501 virtual bool is_set() const = 0;
      +
      502
      +
      504 virtual std::ostream& print_on( std::ostream& os) const = 0;
      +
      505
      +
      507 friend std::ostream& operator<<(std::ostream& os, const color& c)
      +
      508 {
      +
      509 if(c.is_set()) {
      +
      510 os << "\033[" << static_cast<short>(c.type) << ";" << static_cast<short>(c.mode) << ";";
      +
      511 c.print_on(os);
      +
      512 os << "m";
      +
      513 }
      +
      514 return os;
      +
      515 }
      +
      516 };
      +
      517
      +
      518 // There is no color_16 because it would be the same as color_256, only with different indices,
      +
      519 // hence making it more complicated for the user to select the right constructor.
      +
      520 // Here, we just use enum for 16 colors, and indices for 256 colors.
      +
      521
      +
      523 struct color_256 : public color {
      +
      527 short index;
      +
      528
      +
      532 color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
      +
      533
      +
      539 color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {assert(-1 <= i and i <= 255);}
      +
      540
      +
      542 bool is_set() const {return index > -1;}
      +
      543
      +
      545 std::ostream& print_on( std::ostream& os) const
      +
      546 {
      +
      547 os << index;
      +
      548 return os;
      +
      549 }
      +
      550 };
      +
      551
      +
      553 struct fg_256 : public color_256 {
      +
      555 fg_256() : color_256(ground::fore) {}
      +
      556
      +
      560 fg_256(const short f) : color_256(ground::fore, f) {}
      +
      561
      +
      565 fg_256(const fg&) : color_256(ground::fore, -1) {}
      +
      566
      + +
      568
      +
      570 struct bg_256 : public color_256 {
      +
      572 bg_256() : color_256(ground::back) {}
      +
      573
      +
      577 bg_256(const short b) : color_256(ground::back, b) {}
      +
      578
      +
      582 bg_256(const bg&) : color_256(ground::back, -1) {}
      +
      583
      + +
      585
      +
      587 struct color_16M : public color {
      +
      591 short red, green, blue;
      +
      592
      +
      596 color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
      +
      597
      +
      605 color_16M(ground t, short r, short g, short b)
      +
      606 : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
      +
      607
      +
      615 color_16M(ground t, const std::string& srgb) : color(ansi::colors_16M, t)
      +
      616 {
      +
      617 assert(srgb.size() == 7);
      +
      618 if(srgb.size() != 7) {
      +
      619 red = -1;
      +
      620 green = -1;
      +
      621 blue = -1;
      +
      622 } else {
      +
      623 char i = 0;
      +
      624 if(srgb.at(0) == '#') {
      +
      625 i = 1;
      +
      626 }
      +
      627 std::istringstream(srgb.substr(0+i,2)) >> std::hex >> red;
      +
      628 std::istringstream(srgb.substr(2+i,2)) >> std::hex >> green;
      +
      629 std::istringstream(srgb.substr(4+i,2)) >> std::hex >> blue;
      +
      630 }
      +
      631 assert(-1 <= red and red <= 255);
      +
      632 assert(-1 <= green and green <= 255);
      +
      633 assert(-1 <= blue and blue <= 255);
      +
      634 }
      +
      635
      +
      637 bool is_set() const {return red > -1 and green > -1 and blue > -1;}
      +
      638
      +
      640 std::ostream& print_on( std::ostream& os) const
      +
      641 {
      +
      642 os << red << ";" << green << ";" << blue;
      +
      643 return os;
      +
      644 }
      +
      645 };
      +
      646
      +
      648 struct fg_16M : public color_16M {
      +
      650 fg_16M() : color_16M(ground::fore) {}
      +
      651
      +
      660 fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
      +
      661
      +
      668 fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
      +
      669
      +
      673 fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
      +
      674
      + +
      676
      +
      678 struct bg_16M : public color_16M {
      +
      680 bg_16M() : color_16M(ground::back) {}
      +
      681
      +
      690 bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
      +
      691
      +
      698 bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
      +
      699
      +
      703 bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
      +
      704
      + +
      706
      +
      709 public:
      +
      711 fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
      +
      712
      +
      715 explicit fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      716 explicit fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      717 explicit fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      718 explicit fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      719 explicit fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      720 explicit fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      725 explicit fmt(const short f, const short b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
      +
      726 explicit fmt(const short f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
      +
      727 explicit fmt(fg, const short b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
      +
      728 explicit fmt(const short f, bg, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
      +
      733 explicit fmt(const short fr, const short fg, const short fb,
      +
      734 const short gr, const short gg, const short gb,
      +
      735 typo s = typo::none)
      +
      736 : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
      +
      737 explicit fmt(fg,
      +
      738 const short gr, const short gg, const short gb,
      +
      739 typo s = typo::none)
      +
      740 : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
      +
      741 explicit fmt(const short fr, const short fg, const short fb,
      +
      742 bg, typo s = typo::none)
      +
      743 : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      +
      744 explicit fmt(const short fr, const short fg, const short fb,
      +
      745 typo s = typo::none)
      +
      746 : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      +
      747
      +
      748 explicit fmt(const std::string& f, const std::string& b, typo s = typo::none)
      +
      749 : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
      +
      750 explicit fmt(fg, const std::string& b, typo s = typo::none)
      +
      751 : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
      +
      752 explicit fmt(const std::string& f, bg, typo s = typo::none)
      +
      753 : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      +
      754 explicit fmt(const std::string& f, typo s = typo::none)
      +
      755 : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      +
      758 protected:
      +
      759
      +
      761 std::ostream& print_on( std::ostream& os) const
      +
      762 {
      +
      763 if(mode == ansi::colors_16) {
      +
      764 // Print all in a single escape.
      +
      765 os << std::make_tuple(fore,back,style);
      +
      766
      +
      767 } else {
      +
      768 // 256 or 16M: always print separated escapes for foreground/background.
      +
      769 if(mode == ansi::colors_256) {
      +
      770 os << fore_256;
      +
      771 os << back_256;
      +
      772
      +
      773 } else if(mode == ansi::colors_16M) {
      +
      774 os << fore_16M;
      +
      775 os << back_16M;
      +
      776 }
      +
      777 // In any case, print the style separately.
      +
      778 os << style;
      +
      779 }
      +
      780 return os;
      +
      781 }
      +
      782
      +
      783 public:
      +
      795 friend std::ostream& operator<<(std::ostream& os, const fmt& fmt)
      +
      796 {
      +
      797 return fmt.print_on(os);
      +
      798 }
      +
      799
      +
      810 std::string operator()( const std::string& msg ) const
      +
      811 {
      +
      812 std::ostringstream os;
      +
      813 this->print_on(os);
      +
      814 fmt reset(fmt::typo::reset);
      +
      815 os << msg;
      +
      816 reset.print_on(os);
      +
      817 return os.str();
      +
      818 }
      +
      819
      +
      822 std::string str() const
      +
      823 {
      +
      824 std::ostringstream os;
      +
      825 this->print_on(os);
      +
      826 return os.str();
      +
      827 }
      +
      828
      +
      829 static fmt hash( const std::string& str, const std::vector<fmt> domain = {})
      +
      830 {
      +
      831 size_t h = std::hash<std::string>{}(str);
      +
      832 if(domain.size() == 0) {
      +
      833 return fmt(static_cast<short>(h % 256));
      +
      834 } else {
      +
      835 return domain[h % domain.size()];
      +
      836 }
      +
      837 }
      +
      838 }; // fmt class
      +
      839
      +
      845 public:
      +
      846 clutchlog(clutchlog const&) = delete;
      +
      847 void operator=(clutchlog const&) = delete;
      +
      848
      +
      849 private:
      +
      850 clutchlog() :
      +
      851 // system, main, log
      + + +
      854 {level::critical,"Critical"},
      +
      855 {level::error ,"Error"},
      +
      856 {level::warning ,"Warning"},
      +
      857 {level::progress,"Progress"},
      +
      858 {level::note ,"Note"},
      +
      859 {level::info ,"Info"},
      +
      860 {level::debug ,"Debug"},
      +
      861 {level::xdebug ,"XDebug"}
      +
      862 }),
      + +
      864 {level::critical, "Crit"},
      +
      865 {level::error , "Erro"},
      +
      866 {level::warning , "Warn"},
      +
      867 {level::progress, "Prog"},
      +
      868 {level::note , "Note"},
      +
      869 {level::info , "Info"},
      +
      870 {level::debug , "Dbug"},
      +
      871 {level::xdebug , "XDbg"}
      +
      872 }),
      +
      873 _level_fmt({
      +
      874 {level::critical,fmt(fmt::fg::red, fmt::typo::underline)},
      +
      875 {level::error ,fmt(fmt::fg::red, fmt::typo::bold)},
      +
      876 {level::warning ,fmt(fmt::fg::magenta, fmt::typo::bold)},
      +
      877 {level::progress,fmt()},
      +
      878 {level::note ,fmt()},
      +
      879 {level::info ,fmt()},
      +
      880 {level::debug ,fmt()},
      +
      881 {level::xdebug ,fmt()}
      +
      882 }),
      + + +
      885 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      + +
      887 _hfill_fmt(fmt::fg::none),
      + + +
      890 #endif
      +
      891 _out(&std::clog),
      +
      892 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      893 _depth(std::numeric_limits<size_t>::max() - _strip_calls),
      + +
      895 #endif
      +
      896 _stage(level::error),
      +
      897 _in_file(".*"),
      +
      898 _in_func(".*"),
      +
      899 _in_line(".*"),
      +
      900 // Empty vectors by default:
      +
      901 // _filehash_fmts
      +
      902 // _funchash_fmts
      +
      903 // _depth_fmts
      +
      904 _filename(filename::path)
      +
      905 {
      +
      906 // Reverse the level->word map into a word->level map.
      +
      907 for(auto& lw : _level_word) {
      +
      908 _word_level[lw.second] = lw.first;
      +
      909 }
      +
      910#if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      +
      911 struct winsize w;
      +
      912 ioctl(STDERR_FILENO, TIOCGWINSZ, &w);
      +
      913 _nb_columns = std::max(std::min((size_t)w.ws_col, default_hfill_max), default_hfill_min);
      +
      914#endif
      +
      915 }
      +
      916
      +
      917 protected:
      + +
      921 const std::map<level,std::string> _level_word;
      +
      923 std::map<std::string,level> _word_level;
      +
      925 std::map<level,std::string> _level_short;
      +
      927 std::map<level,fmt> _level_fmt;
      +
      929 std::string _format_log;
      +
      931 std::string _format_dump;
      +
      932 #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      +
      934 char _hfill_char;
      +
      936 fmt _hfill_fmt;
      +
      938 size_t _hfill_max;
      +
      940 size_t _hfill_min;
      +
      941 #endif
      +
      943 std::ostream* _out;
      +
      944 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      946 size_t _depth;
      +
      948 std::string _depth_mark;
      +
      949 #endif
      + +
      953 std::regex _in_file;
      +
      955 std::regex _in_func;
      +
      957 std::regex _in_line;
      +
      958
      +
      960 std::vector<fmt> _filehash_fmts;
      +
      962 std::vector<fmt> _funchash_fmts;
      +
      963
      +
      964#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      966 static const size_t _max_buffer = 4096;
      +
      968 std::vector<fmt> _depth_fmts;
      +
      969#endif
      +
      970
      +
      971#if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      +
      973 size_t _nb_columns;
      +
      974#endif
      +
      975
      + +
      980 public:
      +
      981
      +
      986 void format(const std::string& format) {_format_log = format;}
      +
      988 std::string format() const {return _format_log;}
      +
      989
      +
      991 void format_comment(const std::string& format) {_format_dump = format;}
      +
      993 std::string format_comment() const {return _format_dump;}
      +
      994
      +
      996 void out(std::ostream& out) {_out = &out;}
      +
      998 std::ostream& out() {return *_out;}
      +
      999
      +
      1000#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      1002 void depth(size_t d) {_depth = d;}
      +
      1004 size_t depth() const {return _depth;}
      +
      1005
      +
      1007 void depth_mark(const std::string mark) {_depth_mark = mark;}
      +
      1009 std::string depth_mark() const {return _depth_mark;}
      +
      1010
      +
      1012 void strip_calls(const size_t n) {_strip_calls = n;}
      +
      1014 size_t strip_calls() const {return _strip_calls;}
      +
      1015#endif
      +
      1016#if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      +
      1018 void hfill_mark(const char mark) {_hfill_char = mark;}
      +
      1020 char hfill_mark() const {return _hfill_char;}
      +
      1022 void hfill_style(fmt style) {_hfill_fmt = style;}
      +
      1027 template<class ... FMT>
      +
      1028 void hfill_style(FMT... styles) { this->hfill_style(fmt(styles...)); }
      +
      1030 fmt hfill_style() const {return _hfill_fmt;}
      +
      1032 void hfill_max(const size_t nmax) {_hfill_max = nmax;}
      +
      1034 size_t hfill_max() {return _hfill_max;}
      +
      1036 void hfill_min(const size_t nmin) {_hfill_min = nmin;}
      +
      1038 size_t hfill_min() {return _hfill_min;}
      +
      1039#endif
      +
      1047 void filehash_styles(std::vector<fmt> styles) {_filehash_fmts = styles;}
      +
      1055 void funchash_styles(std::vector<fmt> styles) {_funchash_fmts = styles;}
      +
      1064 void depth_styles(std::vector<fmt> styles) {_depth_fmts = styles;}
      +
      1065
      +
      1067 void threshold(level l) {_stage = l;}
      +
      1069 void threshold(const std::string& l) {_stage = this->level_of(l);}
      +
      1071 level threshold() const {return _stage;}
      +
      1073 const std::map<std::string,level>& levels() const { return _word_level;}
      +
      1074
      +
      1079 level level_of(const std::string name)
      +
      1080 {
      +
      1081 const auto ilevel = _word_level.find(name);
      +
      1082 if( ilevel != std::end(_word_level)) {
      +
      1083 return ilevel->second;
      +
      1084 } else {
      +
      1085 throw std::out_of_range("'" + name + "' is not a valid log level name");
      +
      1086 }
      +
      1087 }
      +
      1088
      +
      1090 void file(std::string file) {_in_file = file;}
      +
      1092 void func(std::string func) {_in_func = func;}
      +
      1094 void line(std::string line) {_in_line = line;}
      +
      1095
      + +
      1098 const std::string& in_file,
      +
      1099 const std::string& in_function=".*",
      +
      1100 const std::string& in_line=".*"
      +
      1101 )
      +
      1102 {
      +
      1103 file(in_file);
      +
      1104 func(in_function);
      +
      1105 line(in_line);
      +
      1106 }
      +
      1107
      +
      1112 template<class ... FMT>
      +
      1113 void style(level stage, FMT... styles) { this->style(stage,fmt(styles...)); }
      +
      1115 void style(level stage, fmt style) { _level_fmt.at(stage) = style; }
      +
      1117 fmt style(level stage) const { return _level_fmt.at(stage); }
      +
      1118
      + +
      1121
      +
      1124 public:
      +
      1125
      +
      1130 struct scope_t {
      + + +
      1135#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      1137 size_t depth;
      +
      1138#endif
      +
      1140 bool there;
      + +
      1143 matches(false),
      +
      1144 stage(level::xdebug),
      + +
      1146 depth(0),
      +
      1147#endif
      +
      1148 there(false)
      +
      1149 {}
      +
      1150 }; // scope_t
      +
      1151
      +
      1152
      + +
      1155 const level& stage,
      +
      1156 const std::string& file,
      +
      1157 const std::string& func,
      +
      1158 const size_t line
      +
      1159 ) const
      +
      1160 {
      +
      1161 scope_t scope; // False scope by default.
      +
      1162
      +
      1163 /***** Log level stage *****/
      +
      1164 // Test stage first, because it's fastest.
      +
      1165 scope.stage = stage;
      +
      1166 if(not (scope.stage <= _stage)) {
      +
      1167 // Bypass useless computations if no match
      +
      1168 // because of the stage.
      +
      1169 return scope;
      +
      1170 }
      +
      1171#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      1172 /***** Stack depth *****/
      +
      1173 // Backtrace in second, quite fast.
      +
      1174 size_t stack_depth;
      +
      1175 void *buffer[_max_buffer];
      +
      1176 stack_depth = backtrace(buffer, _max_buffer);
      +
      1177 scope.depth = stack_depth;
      +
      1178 if(not (scope.depth <= _depth + _strip_calls)) {
      +
      1179 // Bypass if no match.
      +
      1180 return scope;
      +
      1181 }
      +
      1182#endif
      +
      1183
      +
      1184 /***** Location *****/
      +
      1185 // Location last, slowest.
      +
      1186 std::ostringstream sline; sline << line;
      +
      1187 scope.there =
      +
      1188 std::regex_search(file, _in_file)
      +
      1189 and std::regex_search(func, _in_func)
      +
      1190 and std::regex_search(sline.str(), _in_line);
      +
      1191
      +
      1192 // No need to retest stage and depth, which are true here.
      +
      1193 scope.matches = scope.there;
      +
      1194
      +
      1195 return scope;
      +
      1196 } // locate
      +
      1197
      +
      1205 std::string replace(
      +
      1206 const std::string& form,
      +
      1207 const std::string& mark,
      +
      1208 const std::string& tag
      +
      1209 ) const
      +
      1210 {
      +
      1211 // Useless debug code, unless something fancy would be done with name tags.
      +
      1212 // std::regex re;
      +
      1213 // try {
      +
      1214 // re = std::regex(mark);
      +
      1215 //
      +
      1216 // } catch(const std::regex_error& e) {
      +
      1217 // std::cerr << "ERROR with a regular expression \"" << mark << "\": ";
      +
      1218 // switch(e.code()) {
      +
      1219 // case std::regex_constants::error_collate:
      +
      1220 // std::cerr << "the expression contains an invalid collating element name";
      +
      1221 // break;
      +
      1222 // case std::regex_constants::error_ctype:
      +
      1223 // std::cerr << "the expression contains an invalid character class name";
      +
      1224 // break;
      +
      1225 // case std::regex_constants::error_escape:
      +
      1226 // std::cerr << "the expression contains an invalid escaped character or a trailing escape";
      +
      1227 // break;
      +
      1228 // case std::regex_constants::error_backref:
      +
      1229 // std::cerr << "the expression contains an invalid back reference";
      +
      1230 // break;
      +
      1231 // case std::regex_constants::error_brack:
      +
      1232 // std::cerr << "the expression contains mismatched square brackets ('[' and ']')";
      +
      1233 // break;
      +
      1234 // case std::regex_constants::error_paren:
      +
      1235 // std::cerr << "the expression contains mismatched parentheses ('(' and ')')";
      +
      1236 // break;
      +
      1237 // case std::regex_constants::error_brace:
      +
      1238 // std::cerr << "the expression contains mismatched curly braces ('{' and '}')";
      +
      1239 // break;
      +
      1240 // case std::regex_constants::error_badbrace:
      +
      1241 // std::cerr << "the expression contains an invalid range in a {} expression";
      +
      1242 // break;
      +
      1243 // case std::regex_constants::error_range:
      +
      1244 // std::cerr << "the expression contains an invalid character range (e.g. [b-a])";
      +
      1245 // break;
      +
      1246 // case std::regex_constants::error_space:
      +
      1247 // std::cerr << "there was not enough memory to convert the expression into a finite state machine";
      +
      1248 // break;
      +
      1249 // case std::regex_constants::error_badrepeat:
      +
      1250 // std::cerr << "one of *?+{ was not preceded by a valid regular expression";
      +
      1251 // break;
      +
      1252 // case std::regex_constants::error_complexity:
      +
      1253 // std::cerr << "the complexity of an attempted match exceeded a predefined level";
      +
      1254 // break;
      +
      1255 // case std::regex_constants::error_stack:
      +
      1256 // std::cerr << "there was not enough memory to perform a match";
      +
      1257 // break;
      +
      1258 // default:
      +
      1259 // std::cerr << "unknown error";
      +
      1260 // }
      +
      1261 // std::cerr << std::endl;
      +
      1262 // throw;
      +
      1263 // } // catch
      +
      1264
      +
      1265 const std::regex re(mark);
      +
      1266 return std::regex_replace(form, re, tag);
      +
      1267 }
      +
      1268
      +
      1270 std::string replace(
      +
      1271 const std::string& form,
      +
      1272 const std::string& mark,
      +
      1273 const size_t tag
      +
      1274 ) const
      +
      1275 {
      +
      1276 std::ostringstream stag; stag << tag;
      +
      1277 return replace(form, mark, stag.str());
      +
      1278 }
      +
      1279
      +
      1281 std::string format(
      +
      1282 std::string row,
      +
      1283 const std::string& what,
      + +
      1285 const std::string& name,
      +
      1286#endif
      +
      1287 const level& stage,
      +
      1288 const std::string& file,
      +
      1289 const std::string& func,
      +
      1290 const size_t line
      + +
      1292 ,
      +
      1293 const size_t depth
      +
      1294#endif
      +
      1295 ) const
      +
      1296 {
      +
      1297 row = replace(row, "\\{msg\\}", what);
      +
      1298
      +
      1299 const std::filesystem::path filepath(file);
      +
      1300 std::string filename;
      +
      1301 std::filesystem::path::iterator ip = filepath.end();
      +
      1302 std::advance(ip, -2);
      +
      1303 switch(_filename) {
      +
      1304 case filename::base:
      +
      1305 filename = filepath.filename().string();
      +
      1306 break;
      +
      1307 case filename::dir:
      +
      1308 filename = ip->string();
      +
      1309 break;
      +
      1310 case filename::dirbase:
      +
      1311 filename = (*ip / filepath.filename()).string();
      +
      1312 break;
      +
      1313 case filename::stem:
      +
      1314 filename = filepath.stem().string();
      +
      1315 break;
      +
      1316 case filename::dirstem:
      +
      1317 filename = (*ip / filepath.stem()).string();
      +
      1318 break;
      +
      1319 case filename::path:
      +
      1320 default:
      +
      1321 filename = file;
      +
      1322 break;
      +
      1323 }
      +
      1324 row = replace(row, "\\{file\\}", filename);
      +
      1325
      +
      1326
      +
      1327 row = replace(row, "\\{func\\}", func);
      +
      1328 row = replace(row, "\\{line\\}", line);
      +
      1329
      +
      1330 row = replace(row, "\\{level\\}", _level_word.at(stage));
      +
      1331 std::string letter(1, _level_word.at(stage).at(0)); // char -> string
      +
      1332 row = replace(row, "\\{level_letter\\}", letter);
      +
      1333 row = replace(row, "\\{level_short\\}", _level_short.at(stage));
      +
      1334
      +
      1335#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      1336 size_t actual_depth = depth - _strip_calls;
      +
      1337 row = replace(row, "\\{name\\}", name);
      +
      1338 row = replace(row, "\\{depth\\}", actual_depth);
      +
      1339
      +
      1340 if(_depth_fmts.size() == 0) {
      +
      1341 row = replace(row, "\\{depth_fmt\\}", fmt(actual_depth % 256).str() );
      +
      1342
      +
      1343 std::ostringstream chevrons;
      +
      1344 for(size_t i = 0; i < actual_depth; ++i) {
      +
      1345 chevrons << _depth_mark;
      +
      1346 }
      +
      1347 row = replace(row, "\\{depth_marks\\}", chevrons.str());
      +
      1348
      +
      1349 } else {
      +
      1350 row = replace(row, "\\{depth_fmt\\}",
      +
      1351 _depth_fmts[std::min(actual_depth,_depth_fmts.size()-1)].str() );
      +
      1352
      +
      1353 std::ostringstream chevrons;
      +
      1354 for(size_t i = 0; i < actual_depth; ++i) {
      +
      1355 chevrons << _depth_fmts[std::min(i+1,_depth_fmts.size()-1)].str()
      +
      1356 << _depth_mark;
      +
      1357 }
      +
      1358 row = replace(row, "\\{depth_marks\\}", chevrons.str());
      +
      1359 }
      +
      1360#endif
      +
      1361 row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str());
      +
      1362 row = replace(row, "\\{filehash_fmt\\}", fmt::hash(file, _filehash_fmts).str() );
      +
      1363 row = replace(row, "\\{funchash_fmt\\}", fmt::hash(func, _funchash_fmts).str() );
      +
      1364
      +
      1365#if CLUTCHLOG_HAVE_UNIX_SYSIOCTL
      +
      1366 // hfill is replaced last to allow for correct line width estimation.
      +
      1367 const std::string raw_row = replace(row, "(\\x9B|\\x1B\\[)[0-?]*[ -\\/]*[@-~]", "");
      +
      1368 const std::string hfill_tag = "{hfill}";
      +
      1369 const size_t hfill_pos = row.find(hfill_tag);
      +
      1370 const size_t raw_hfill_pos = raw_row.find(hfill_tag);
      +
      1371 const size_t nb_columns = std::max(std::min((size_t)_nb_columns, _hfill_max), _hfill_min);
      +
      1372 if(hfill_pos != std::string::npos) {
      +
      1373 assert(raw_hfill_pos != std::string::npos);
      +
      1374 if(nb_columns > 0) {
      +
      1375 const size_t left_len = raw_hfill_pos;
      +
      1376 const size_t right_len = raw_row.size() - raw_hfill_pos - hfill_tag.size();
      +
      1377 if(right_len+left_len > nb_columns) {
      +
      1378 // The right part would go over the terminal width: add a new row.
      +
      1379 if(right_len < nb_columns) {
      +
      1380 // There is room for the right part on a new line.
      +
      1381 const std::string hfill(std::max((size_t)0, nb_columns-right_len), _hfill_char);
      +
      1382 const std::string hfill_styled = _hfill_fmt(hfill);
      +
      1383 row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
      +
      1384 } else {
      +
      1385 // Right part still goes over columns: let it go.
      +
      1386 const std::string hfill(1, _hfill_char);
      +
      1387 const std::string hfill_styled = _hfill_fmt(hfill);
      +
      1388 row = replace(row, "\\{hfill\\}", "\n"+hfill_styled);
      +
      1389 }
      +
      1390 } else {
      +
      1391 // There is some space in between left and right parts.
      +
      1392 const std::string hfill(std::max((size_t)0, nb_columns - (right_len+left_len)), _hfill_char);
      +
      1393 const std::string hfill_styled = _hfill_fmt(hfill);
      +
      1394 row = replace(row, "\\{hfill\\}", hfill_styled);
      +
      1395 }
      +
      1396 } else {
      +
      1397 // We don't know the terminal width.
      +
      1398 const std::string hfill(1, _hfill_char);
      +
      1399 const std::string hfill_styled = _hfill_fmt(hfill);
      +
      1400 row = replace(row, "\\{hfill\\}", hfill_styled);
      +
      1401 }
      +
      1402 }
      +
      1403#else
      +
      1404 // We cannot know the terminal width.
      +
      1405 const std::string hfill(1, _hfill_char);
      +
      1406 const std::string hfill_styled = _hfill_fmt(hfill);
      +
      1407 row = replace(row, "\\{hfill\\}", hfill_styled);
      +
      1408#endif
      +
      1409 return _level_fmt.at(stage)(row);
      +
      1410 }
      +
      1411
      +
      1413 void log(
      +
      1414 const level& stage,
      +
      1415 const std::string& what,
      +
      1416 const std::string& file, const std::string& func, const size_t line,
      +
      1417 const size_t depth_delta = 0
      +
      1418 ) const
      +
      1419 {
      +
      1420 scope_t scope = locate(stage, file, func, line);
      +
      1421
      +
      1422 if(scope.matches) {
      +
      1423#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      1424 *_out << format(_format_log, what, basename(getenv("_")),
      +
      1425 stage, file, func,
      +
      1426 line, scope.depth + depth_delta );
      +
      1427#else
      +
      1428 *_out << format(_format_log, what,
      +
      1429 stage, file, func,
      +
      1430 line );
      +
      1431#endif
      +
      1432 _out->flush();
      +
      1433 } // if scopes.matches
      +
      1434 }
      +
      1435
      +
      1437 template<class In>
      +
      1438 void dump(
      +
      1439 const level& stage,
      +
      1440 const In container_begin, const In container_end,
      +
      1441 const std::string& file, const std::string& func, const size_t line,
      +
      1442 const std::string& filename_template = "dump_{n}.dat",
      +
      1443 const std::string sep = dump_default_sep
      +
      1444 ) const
      +
      1445 {
      +
      1446 scope_t scope = locate(stage, file, func, line);
      +
      1447
      +
      1448 if(scope.matches) {
      +
      1449 const std::string tag = "\\{n\\}";
      +
      1450 const std::regex re(tag);
      +
      1451 std::string outfile = "";
      +
      1452
      +
      1453 // If the file name template has the {n} tag.
      +
      1454 if(std::regex_search(filename_template, re)) {
      +
      1455 // Increment n until a free one is found.
      +
      1456 size_t n = 0;
      +
      1457 do {
      +
      1458 outfile = replace(filename_template, tag, n);
      +
      1459 n++;
      +
      1460 } while( fs::exists( outfile ) );
      +
      1461
      +
      1462 } else {
      +
      1463 // Use the parameter as is.
      +
      1464 outfile = filename_template;
      +
      1465 }
      +
      1466
      +
      1467 std::ofstream fd(outfile);
      +
      1468
      +
      1469 if(_format_dump.size() > 0) {
      +
      1470#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      1471 fd << format(_format_dump, "", basename(getenv("_")),
      +
      1472 stage, file, func,
      +
      1473 line, scope.depth );
      +
      1474#else
      +
      1475 fd << format(_format_dump, "",
      +
      1476 stage, file, func,
      +
      1477 line );
      +
      1478#endif
      +
      1479 fd << sep; // sep after comment line.
      +
      1480 }
      +
      1481
      +
      1482 std::copy(container_begin, container_end,
      +
      1483 std::ostream_iterator<typename In::value_type>(fd, sep.c_str()));
      +
      1484
      +
      1485 fd.close();
      +
      1486 } // if scopes.matches
      +
      1487 }
      +
      1488
      +
      1490};
      +
      1491
      +
      1494#else // not WITH_CLUTCHLOG
      +
      1495
      +
      1496
      +
      1497/**********************************************************************
      +
      1498 * Fake implementation
      +
      1499 **********************************************************************/
      +
      1500
      +
      1501// Equivalent class with empty methods, will be optimized out
      +
      1502// while allowing to actually have calls implemented without WITH_CLUTCHLOG guards.
      +
      1503#pragma GCC diagnostic push
      +
      1504#pragma GCC diagnostic ignored "-Wreturn-type"
      +
      1505class clutchlog
      +
      1506{
      +
      1507 public:
      +
      1508 static clutchlog& logger() {
      +
      1509 static clutchlog instance;
      +
      1510 return instance;
      +
      1511 }
      +
      1512 enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
      +
      1513 enum filename {path, base, dir, dirbase, stem, dirstem};
      +
      1514 class fmt {
      +
      1515 public:
      +
      1516 enum class ansi { colors_16, colors_256, colors_16M} mode;
      +
      1517 enum class typo { reset, bold, underline, inverse, none} style;
      +
      1518 enum class fg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none} fore;
      +
      1519 enum class bg { black, red, green, yellow, blue, magenta, cyan, white, bright_black, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white, none } back;
      +
      1520 protected:
      +
      1521 friend std::ostream& operator<<(std::ostream&, const std::tuple<fg,bg,typo>&) {}
      +
      1522 friend std::ostream& operator<<(std::ostream&, const typo&) {}
      +
      1523 protected:
      +
      1524 struct color {
      +
      1525 ansi mode;
      +
      1526 enum class ground { fore, back } type;
      +
      1527 color(ansi a, ground g) : mode(a), type(g) {}
      +
      1528 virtual bool is_set() const = 0;
      +
      1529 virtual std::ostream& print_on( std::ostream&) const = 0;
      +
      1530 friend std::ostream& operator<<(std::ostream&, const color&) {}
      +
      1531 };
      +
      1532 struct color_256 : public color {
      +
      1533 short index;
      +
      1534 color_256(ground t) : color(ansi::colors_256, t), index(-1) {}
      +
      1535 color_256(ground t, const short i) : color(ansi::colors_256, t), index(i) {}
      +
      1536 bool is_set() const {}
      +
      1537 std::ostream& print_on( std::ostream&) const {}
      +
      1538 };
      +
      1539 struct fg_256 : public color_256 {
      +
      1540 fg_256() : color_256(ground::fore) {}
      +
      1541 fg_256(const short f) : color_256(ground::fore, f) {}
      +
      1542 fg_256(const fg&) : color_256(ground::fore, -1) {}
      +
      1543 } fore_256;
      +
      1544 struct bg_256 : public color_256 {
      +
      1545 bg_256() : color_256(ground::back) {}
      +
      1546 bg_256(const short b) : color_256(ground::back, b) {}
      +
      1547 bg_256(const bg&) : color_256(ground::back, -1) {}
      +
      1548 } back_256;
      +
      1549 struct color_16M : public color {
      +
      1550 short red, green, blue;
      +
      1551 color_16M(ground t) : color(ansi::colors_16M, t), red(-1), green(-1), blue(-1) {}
      +
      1552 color_16M(ground t, short r, short g, short b) : color(ansi::colors_16M, t), red(r), green(g), blue(b) {}
      +
      1553 color_16M(ground t, const std::string&) : color(ansi::colors_16M, t) {}
      +
      1554 bool is_set() const {return red > -1 and green > -1 and blue > -1;}
      +
      1555 std::ostream& print_on( std::ostream&) const {}
      +
      1556 };
      +
      1557 struct fg_16M : public color_16M {
      +
      1558 fg_16M() : color_16M(ground::fore) {}
      +
      1559 fg_16M(short r, short g, short b) : color_16M(ground::fore, r,g,b) {}
      +
      1560 fg_16M(const std::string& srgb) : color_16M(ground::fore, srgb) {}
      +
      1561 fg_16M(const fg&) : color_16M(ground::fore, -1,-1,-1) {}
      +
      1562 } fore_16M;
      +
      1563 struct bg_16M : public color_16M {
      +
      1564 bg_16M() : color_16M(ground::back) {}
      +
      1565 bg_16M(short r, short g, short b) : color_16M(ground::back, r,g,b) {}
      +
      1566 bg_16M(const std::string& srgb) : color_16M(ground::back, srgb) {}
      +
      1567 bg_16M(const bg&) : color_16M(ground::back, -1,-1,-1) {}
      +
      1568 } back_16M;
      +
      1569 public:
      +
      1570 fmt() : mode(ansi::colors_16), style(typo::none), fore(fg::none), back(bg::none) {}
      +
      1571 fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      1572 fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      1573 fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      1574 fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      1575 fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      1576 fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {}
      +
      1577 fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {}
      +
      1578 fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {}
      +
      1579 fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {}
      +
      1580 fmt(const short fr, const short fg, const short fb,
      +
      1581 const short gr, const short gg, const short gb,
      +
      1582 typo s = typo::none)
      +
      1583 : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {}
      +
      1584 fmt(fg,
      +
      1585 const short gr, const short gg, const short gb,
      +
      1586 typo s = typo::none)
      +
      1587 : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {}
      +
      1588 fmt(const short fr, const short fg, const short fb,
      +
      1589 bg, typo s = typo::none)
      +
      1590 : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      +
      1591 fmt(const short fr, const short fg, const short fb,
      +
      1592 typo s = typo::none)
      +
      1593 : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {}
      +
      1594
      +
      1595 fmt(const std::string& f, const std::string& b, typo s = typo::none)
      +
      1596 : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {}
      +
      1597 fmt(fg, const std::string& b, typo s = typo::none)
      +
      1598 : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {}
      +
      1599 fmt(const std::string& f, bg, typo s = typo::none)
      +
      1600 : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      +
      1601 fmt(const std::string& f, typo s = typo::none)
      +
      1602 : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {}
      +
      1603 protected:
      +
      1604 std::ostream& print_on( std::ostream&) const {}
      +
      1605 public:
      +
      1606 friend std::ostream& operator<<(std::ostream& os, const fmt&) { return os; }
      +
      1607 std::string operator()( const std::string& msg) const { return msg; }
      +
      1608 std::string str() const { return ""; }
      +
      1609 static fmt hash( const std::string&, const std::vector<fmt>) {}
      +
      1610 };
      +
      1611 public:
      +
      1612 clutchlog(clutchlog const&) = delete;
      +
      1613 void operator=(clutchlog const&) = delete;
      +
      1614 private:
      +
      1615 clutchlog() {}
      +
      1616 protected:
      +
      1617 struct scope_t {};
      +
      1618 scope_t locate(
      +
      1619 const level&,
      +
      1620 const std::string&,
      +
      1621 const std::string&,
      +
      1622 const size_t
      +
      1623 ) const
      +
      1624 {}
      +
      1625 public:
      +
      1626 void format(const std::string&) {}
      +
      1627 std::string format() const { return ""; }
      +
      1628
      +
      1629 void format_comment(const std::string&) {}
      +
      1630 std::string format_comment() const { return ""; }
      +
      1631
      +
      1632 void out(std::ostream&) {}
      +
      1633 std::ostream& out() {}
      +
      1634
      +
      1635#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
      +
      1636 void depth(size_t) {}
      +
      1637 size_t depth() const { return 0; }
      +
      1638
      +
      1639 void depth_mark(const std::string) {}
      +
      1640 std::string depth_mark() const { return ""; }
      +
      1641 void strip_calls(const size_t) {}
      +
      1642 size_t strip_calls() const { return 0; }
      +
      1643#endif
      +
      1644#if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
      +
      1645 void hfill_mark(const char) {}
      +
      1646 char hfill_mark() const { return '\0'; }
      +
      1647 void hfill_fmt(fmt) {}
      +
      1648 fmt hfill_fmt() const { return fmt(); }
      +
      1649 void hfill_min(const size_t) {}
      +
      1650 size_t hfill_min() { return 0; }
      +
      1651 void hfill_max(const size_t) {}
      +
      1652 size_t hfill_max() { return 0; }
      +
      1653#endif
      +
      1654 void filehash_styles(std::vector<fmt> ) {}
      +
      1655 void funchash_styles(std::vector<fmt> ) {}
      +
      1656 void depth_styles(std::vector<fmt>) {}
      +
      1657
      +
      1658 void threshold(level) {}
      +
      1659 void threshold(const std::string&) {}
      +
      1660 level threshold() const { return level::error; }
      +
      1661 const std::map<std::string,level> levels() const {}
      +
      1662 level level_of(const std::string) { return level::error; }
      +
      1663
      +
      1664 void file(std::string) {}
      +
      1665 void func(std::string) {}
      +
      1666 void line(std::string) {}
      +
      1667
      +
      1668#pragma GCC diagnostic push
      +
      1669#pragma GCC diagnostic ignored "-Wunused-parameter"
      +
      1670 void location(
      +
      1671 const std::string&,
      +
      1672 const std::string& in_function=".*",
      +
      1673 const std::string& in_line=".*"
      +
      1674 )
      +
      1675 {}
      +
      1676#pragma GCC diagnostic pop
      +
      1677 template<class ... FMT>
      +
      1678 void style(level, FMT...) {}
      +
      1679 void style(level, fmt) {}
      +
      1680 fmt style(level) const { return fmt(); }
      +
      1681 void filename(filename) {}
      +
      1682 public:
      +
      1683 std::string replace(
      +
      1684 const std::string& form,
      +
      1685 const std::string&,
      +
      1686 const std::string&
      +
      1687 ) const
      +
      1688 {
      +
      1689 return form;
      +
      1690 }
      +
      1691
      +
      1692 std::string replace(
      +
      1693 const std::string& form,
      +
      1694 const std::string&,
      +
      1695 const size_t
      +
      1696 ) const
      +
      1697 {
      +
      1698 return form;
      +
      1699 }
      +
      1700
      +
      1701 std::string format(
      +
      1702 std::string row,
      +
      1703 const std::string&,
      + +
      1705 const std::string&,
      +
      1706#endif
      +
      1707 const level&,
      +
      1708 const std::string&,
      +
      1709 const std::string&,
      +
      1710 const size_t
      + +
      1712 ,
      +
      1713 const size_t
      +
      1714#endif
      +
      1715 ) const
      +
      1716 {
      +
      1717 return row;
      +
      1718 }
      +
      1719
      +
      1720 void log(
      +
      1721 const level&,
      +
      1722 const std::string&,
      +
      1723 const std::string&, const std::string&, size_t
      +
      1724 ) const
      +
      1725 {}
      +
      1726
      +
      1727 template<class In>
      +
      1728 void dump(
      +
      1729 const level&,
      +
      1730 const In, const In,
      +
      1731 const std::string&, const std::string&, size_t,
      +
      1732 const std::string&,
      +
      1733 const std::string
      +
      1734 ) const
      +
      1735 {}
      +
      1736};
      +
      1737#pragma GCC diagnostic pop
      +
      1738#endif // WITH_CLUTCHLOG
      +
      1739
      +
      1740#endif // CLUTCHLOG_H
      +
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:380
      +
      enum clutchlog::fmt::ansi mode
      Current ANSI color mode.
      +
      friend std::ostream & operator<<(std::ostream &os, const fmt &fmt)
      Output stream overload.
      Definition: clutchlog.h:795
      +
      enum clutchlog::fmt::typo style
      Typographic style.
      +
      fmt()
      Empty constructor, only useful for a no-op formatter.
      Definition: clutchlog.h:711
      +
      ansi
      ANSI code configuring the available number of colors.
      Definition: clutchlog.h:383
      +
      @ colors_16M
      16 millions ("true") colors mode.
      +
      @ colors_16
      16 colors mode.
      +
      @ colors_256
      256 colors mode.
      +
      typo
      Typographic style codes.
      Definition: clutchlog.h:393
      +
      std::string str() const
      Return the formatting code as a string.
      Definition: clutchlog.h:822
      +
      std::ostream & print_on(std::ostream &os) const
      Print the currently encoded format escape code on the given output stream.
      Definition: clutchlog.h:761
      +
      std::string operator()(const std::string &msg) const
      Format the given string with the currently encoded format.
      Definition: clutchlog.h:810
      +
      The single class which holds everything.
      Definition: clutchlog.h:189
      +
      filename _filename
      Filename rendering method.
      Definition: clutchlog.h:977
      +
      void depth_styles(std::vector< fmt > styles)
      Set the styles for value-dependant depth formatting.
      Definition: clutchlog.h:1064
      +
      std::map< level, std::string > _level_short
      dictionary of level identifier to their 4-letters representation.
      Definition: clutchlog.h:925
      +
      std::vector< fmt > _funchash_fmts
      List of candidate format objects for value-dependant function name styling.
      Definition: clutchlog.h:962
      +
      static std::string default_format
      Default format of the messages.
      Definition: clutchlog.h:224
      +
      void file(std::string file)
      Set the regular expression filtering the file location.
      Definition: clutchlog.h:1090
      +
      level
      Available log levels.
      Definition: clutchlog.h:314
      +
      std::regex _in_func
      Current function location filter.
      Definition: clutchlog.h:955
      +
      void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
      Print a log message IF the location matches the given one.
      Definition: clutchlog.h:1413
      +
      std::ostream * _out
      Standard output.
      Definition: clutchlog.h:943
      +
      static unsigned int default_strip_calls
      Number of call stack levels to remove from depth display by default.
      Definition: clutchlog.h:267
      +
      void format_comment(const std::string &format)
      Set the template string for dumps.
      Definition: clutchlog.h:991
      +
      static std::string default_depth_mark
      Default mark for stack depth.
      Definition: clutchlog.h:260
      +
      std::vector< fmt > _filehash_fmts
      List of candidate format objects for value-dependant file name styling.
      Definition: clutchlog.h:960
      +
      size_t _strip_calls
      Current number of call stack levels to remove from depth display.
      Definition: clutchlog.h:919
      +
      void threshold(level l)
      Set the log level (below which logs are not printed) with an identifier.
      Definition: clutchlog.h:1067
      +
      std::regex _in_line
      Current line location filter.
      Definition: clutchlog.h:957
      +
      fmt style(level stage) const
      Get the configured fmt instance of the given log level.
      Definition: clutchlog.h:1117
      +
      scope_t locate(const level &stage, const std::string &file, const std::string &func, const size_t line) const
      Gather information on the current location of the call.
      Definition: clutchlog.h:1154
      +
      static size_t default_hfill_min
      Default minimum width (number of characters) at which to fill for right-aligning the right part of me...
      Definition: clutchlog.h:288
      +
      std::string _format_dump
      Current format of the file output.
      Definition: clutchlog.h:931
      +
      void format(const std::string &format)
      Set the template string.
      Definition: clutchlog.h:986
      +
      void location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
      Set the regular expressions filtering the location.
      Definition: clutchlog.h:1097
      +
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:307
      +
      static char default_hfill_char
      Default character used as a filling for right-align the right part of messages with "{hfill}".
      Definition: clutchlog.h:274
      +
      void threshold(const std::string &l)
      Set the log level (below which logs are not printed) with a string.
      Definition: clutchlog.h:1069
      +
      std::string _format_log
      Current format of the standard output.
      Definition: clutchlog.h:929
      +
      void out(std::ostream &out)
      Set the output stream on which to print.
      Definition: clutchlog.h:996
      +
      filename
      Available filename rendering methods.
      Definition: clutchlog.h:317
      +
      void filename(filename f)
      Sets the file naming scheme. *‍/.
      Definition: clutchlog.h:1120
      +
      const std::map< std::string, level > & levels() const
      Get the map of available log levels string representations toward their identifier....
      Definition: clutchlog.h:1073
      +
      std::string replace(const std::string &form, const std::string &mark, const std::string &tag) const
      Replace mark by tag in form.
      Definition: clutchlog.h:1205
      +
      void line(std::string line)
      Set the regular expression filtering the line location.
      Definition: clutchlog.h:1094
      +
      std::string format_comment() const
      Get the template string for dumps.
      Definition: clutchlog.h:993
      +
      const std::map< level, std::string > _level_word
      Dictionary of level identifier to their string representation.
      Definition: clutchlog.h:921
      +
      level threshold() const
      Get the log level below which logs are not printed.
      Definition: clutchlog.h:1071
      +
      void dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
      Dump a serializable container after a comment line with log information.
      Definition: clutchlog.h:1438
      +
      std::ostream & out()
      Get the output stream on which to print.
      Definition: clutchlog.h:998
      +
      std::map< level, fmt > _level_fmt
      Dictionary of level identifier to their format.
      Definition: clutchlog.h:927
      +
      std::map< std::string, level > _word_level
      Dictionary of level string to their identifier.
      Definition: clutchlog.h:923
      +
      std::string format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
      Substitute all tags in the format string with the corresponding information and apply the style corre...
      Definition: clutchlog.h:1281
      +
      void style(level stage, FMT... styles)
      Set the style (color and typo) of the given log level.
      Definition: clutchlog.h:1113
      +
      static size_t default_hfill_max
      Default maximum width (number of characters) for which to fill for right-aligning the right part of m...
      Definition: clutchlog.h:286
      +
      void funchash_styles(std::vector< fmt > styles)
      Set the candidate styles for value-dependant function name formatting.
      Definition: clutchlog.h:1055
      +
      static std::string dump_default_format
      Default format of the comment line in file dump.
      Definition: clutchlog.h:246
      +
      level level_of(const std::string name)
      Return the log level tag corresponding to the given pre-configured name.
      Definition: clutchlog.h:1079
      +
      void style(level stage, fmt style)
      Set the style (color and typo) of the given log level, passing a fmt instance.
      Definition: clutchlog.h:1115
      +
      void func(std::string func)
      Set the regular expression filtering the function location.
      Definition: clutchlog.h:1092
      +
      std::regex _in_file
      Current file location filter.
      Definition: clutchlog.h:953
      +
      void filehash_styles(std::vector< fmt > styles)
      Set the candidate styles for value-dependant file name formatting.
      Definition: clutchlog.h:1047
      +
      std::string replace(const std::string &form, const std::string &mark, const size_t tag) const
      Replace mark by tag in form, converting tag to its string representation first.
      Definition: clutchlog.h:1270
      +
      level _stage
      Current log level.
      Definition: clutchlog.h:951
      +
      static std::string dump_default_sep
      Default item separator for dump.
      Definition: clutchlog.h:253
      +
      std::string format() const
      Get the template string.
      Definition: clutchlog.h:988
      +
      #define CLUTCHLOG_HAVE_UNIX_SYSINFO
      True if POSIX headers necessary for stack depth management are available.
      Definition: clutchlog.h:34
      +
      #define CLUTCHDUMP_DEFAULT_FORMAT
      Compile-time default format of the comment line in file dump.
      Definition: clutchlog.h:232
      +
      #define CLUTCHLOG_DEFAULT_FORMAT
      Definition: clutchlog.h:209
      +
      bg
      Background color codes.
      Definition: clutchlog.h:425
      +
      fg
      Foreground color codes.
      Definition: clutchlog.h:404
      +
      enum clutchlog::fmt::fg fore
      Foreground color.
      +
      enum clutchlog::fmt::bg back
      Background color.
      +
      friend std::ostream & operator<<(std::ostream &os, const typo &s)
      Output stream operator for a typo tag alone, in 16-colors mode.
      Definition: clutchlog.h:469
      +
      friend std::ostream & operator<<(std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
      Output stream operator for a 3-tuple of 16-colors mode tags.
      Definition: clutchlog.h:447
      +
      clutchlog::fmt::bg_256 back_256
      Current background in 256-colors mode.
      +
      clutchlog::fmt::fg_16M fore_16M
      Current foreground in 16M-colors mode.
      +
      clutchlog::fmt::bg_16M back_16M
      Current background in 16M-colors mode.
      +
      clutchlog::fmt::fg_256 fore_256
      Current foreground in 256-colors mode.
      +
      background in 256-colors mode.
      Definition: clutchlog.h:678
      +
      bg_16M()
      Empty constructor: no color.
      Definition: clutchlog.h:680
      +
      bg_16M(const bg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:703
      +
      bg_16M(short r, short g, short b)
      Numeric triplet constructor.
      Definition: clutchlog.h:690
      +
      bg_16M(const std::string &srgb)
      Hex triplet string constructor.
      Definition: clutchlog.h:698
      +
      Background in 256-colors mode.
      Definition: clutchlog.h:570
      +
      bg_256(const bg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:582
      +
      bg_256()
      Empty constructor: no color.
      Definition: clutchlog.h:572
      +
      bg_256(const short b)
      Constructor.
      Definition: clutchlog.h:577
      +
      Abstract base class for 16M colors objects (24-bits ANSI).
      Definition: clutchlog.h:587
      +
      short red
      The encoded RGB indices.
      Definition: clutchlog.h:591
      +
      color_16M(ground t, short r, short g, short b)
      Numeric triplet constructor.
      Definition: clutchlog.h:605
      +
      color_16M(ground t, const std::string &srgb)
      Hex triplet string constructor.
      Definition: clutchlog.h:615
      +
      bool is_set() const
      Returns true if the underying representation encodes an existing color.
      Definition: clutchlog.h:637
      +
      std::ostream & print_on(std::ostream &os) const
      Print the color RGB triplet on the given stream.
      Definition: clutchlog.h:640
      +
      color_16M(ground t)
      Constructor.
      Definition: clutchlog.h:596
      +
      Abstract base class for 256 colors objects (8-bits ANSI).
      Definition: clutchlog.h:523
      +
      color_256(ground t)
      Constructor.
      Definition: clutchlog.h:532
      +
      color_256(ground t, const short i)
      Constructor.
      Definition: clutchlog.h:539
      +
      short index
      The encoded color index in 4-bits ANSI.
      Definition: clutchlog.h:527
      +
      std::ostream & print_on(std::ostream &os) const
      Print the color index on the given stream.
      Definition: clutchlog.h:545
      +
      bool is_set() const
      Returns true if the underying representation encodes an existing color.
      Definition: clutchlog.h:542
      +
      Interface class for colors representation.
      Definition: clutchlog.h:484
      +
      virtual std::ostream & print_on(std::ostream &os) const =0
      Should print the underlying representation on the given stream.
      +
      enum clutchlog::fmt::color::ground type
      Type of color (foreground or background).
      +
      friend std::ostream & operator<<(std::ostream &os, const color &c)
      Print the actually encoded escaped color sequence on the given stream.
      Definition: clutchlog.h:507
      +
      color(ansi a, ground g)
      Constructor.
      Definition: clutchlog.h:498
      +
      virtual bool is_set() const =0
      Should return true if the underying representation encodes an existing color.
      +
      ground
      Codes for representing foreground or background.
      Definition: clutchlog.h:488
      +
      Foreground in 256-colors mode.
      Definition: clutchlog.h:648
      +
      fg_16M(short r, short g, short b)
      Numeric triplet constructor.
      Definition: clutchlog.h:660
      +
      fg_16M()
      Empty constructor: no color.
      Definition: clutchlog.h:650
      +
      fg_16M(const fg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:673
      +
      fg_16M(const std::string &srgb)
      Hex triplet string constructor.
      Definition: clutchlog.h:668
      +
      Foreground in 256-colors mode.
      Definition: clutchlog.h:553
      +
      fg_256(const fg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:565
      +
      fg_256(const short f)
      Constructor.
      Definition: clutchlog.h:560
      +
      fg_256()
      Empty constructor: no color.
      Definition: clutchlog.h:555
      +
      Structure holding a location matching.
      Definition: clutchlog.h:1130
      +
      scope_t()
      Constructor.
      Definition: clutchlog.h:1142
      +
      bool there
      Location is compatible.
      Definition: clutchlog.h:1140
      +
      level stage
      Current log level.
      Definition: clutchlog.h:1134
      +
      bool matches
      Everything is compatible.
      Definition: clutchlog.h:1132
      -
      friend std::ostream & operator<<(std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
      Output stream operator for a 3-tuple of 16-colors mode tags.
      Definition: clutchlog.h:446
      -
      static std::string default_depth_mark
      Default mark for stack depth.
      Definition: clutchlog.h:259
      -
      std::string _format_log
      Current format of the standard output.
      Definition: clutchlog.h:927
      -
      color_16M(ground t, const std::string &srgb)
      Hex triplet string constructor.
      Definition: clutchlog.h:614
      -
      void dump(const level &stage, const In container_begin, const In container_end, const std::string &file, const std::string &func, const size_t line, const std::string &filename_template="dump_{n}.dat", const std::string sep=dump_default_sep) const
      Dump a serializable container after a comment line with log information.
      Definition: clutchlog.h:1437
      -
      void depth_styles(std::vector< fmt > styles)
      Set the styles for value-dependant depth formatting.
      Definition: clutchlog.h:1062
      -
      std::map< level, fmt > _level_fmt
      Dictionary of level identifier to their format.
      Definition: clutchlog.h:925
      -
      enum clutchlog::fmt::bg back
      Background color.
      -
      std::vector< fmt > _funchash_fmts
      List of candidate format objects for value-dependant function name styling.
      Definition: clutchlog.h:960
      -
      std::string str() const
      Return the formatting code as a string.
      Definition: clutchlog.h:820
      -
      Foreground in 256-colors mode.
      Definition: clutchlog.h:552
      -
      void line(std::string line)
      Set the regular expression filtering the line location.
      Definition: clutchlog.h:1092
      -
      friend std::ostream & operator<<(std::ostream &os, const color &c)
      Print the actually encoded escaped color sequence on the given stream.
      Definition: clutchlog.h:506
      -
      friend std::ostream & operator<<(std::ostream &os, const typo &s)
      Output stream operator for a typo tag alone, in 16-colors mode.
      Definition: clutchlog.h:468
      -
      static std::string dump_default_format
      Default format of the comment line in file dump.
      Definition: clutchlog.h:245
      -
      filename _filename
      Filename rendering method.
      Definition: clutchlog.h:975
      -
      void out(std::ostream &out)
      Set the output stream on which to print.
      Definition: clutchlog.h:994
      -
      bool is_set() const
      Returns true if the underying representation encodes an existing color.
      Definition: clutchlog.h:636
      -
      fg_16M(const fg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:672
      -
      static std::string dump_default_sep
      Default item separator for dump.
      Definition: clutchlog.h:252
      -
      std::string format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const
      Substitute all tags in the format string with the corresponding information and apply the style corre...
      Definition: clutchlog.h:1279
      -
      Background in 256-colors mode.
      Definition: clutchlog.h:569
      -
      #define CLUTCHLOG_DEFAULT_DEPTH_MARK
      Compile-time default mark for stack depth.
      Definition: clutchlog.h:256
      -
      static unsigned int default_strip_calls
      Number of call stack levels to remove from depth display by default.
      Definition: clutchlog.h:266
      -
      static size_t default_hfill_min
      Default minimum width (number of characters) at which to fill for right-aligning the right part of me...
      Definition: clutchlog.h:287
      -
      std::string replace(const std::string &form, const std::string &mark, const std::string &tag) const
      Replace mark by tag in form.
      Definition: clutchlog.h:1203
      -
      color_256(ground t)
      Constructor.
      Definition: clutchlog.h:531
      -
      clutchlog::fmt::bg_16M back_16M
      Current background in 16M-colors mode.
      -
      Interface class for colors representation.
      Definition: clutchlog.h:483
      -
      @ colors_16
      16 colors mode.
      -
      background in 256-colors mode.
      Definition: clutchlog.h:677
      -
      static char default_hfill_char
      Default character used as a filling for right-align the right part of messages with "{hfill}".
      Definition: clutchlog.h:273
      -
      bool matches
      Everything is compatible.
      Definition: clutchlog.h:1130
      -
      enum clutchlog::fmt::typo style
      Typographic style.
      -
      Abstract base class for 16M colors objects (24-bits ANSI).
      Definition: clutchlog.h:586
      -
      fg_256(const fg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:564
      -
      void format_comment(const std::string &format)
      Set the template string for dumps.
      Definition: clutchlog.h:989
      -
      bg_16M(const std::string &srgb)
      Hex triplet string constructor.
      Definition: clutchlog.h:697
      -
      void file(std::string file)
      Set the regular expression filtering the file location.
      Definition: clutchlog.h:1088
      -
      scope_t locate(const level &stage, const std::string &file, const std::string &func, const size_t line) const
      Gather information on the current location of the call.
      Definition: clutchlog.h:1152
      -
      clutchlog::fmt::fg_16M fore_16M
      Current foreground in 16M-colors mode.
      -
      Abstract base class for 256 colors objects (8-bits ANSI).
      Definition: clutchlog.h:522
      -
      fmt()
      Empty constructor, only useful for a no-op formatter.
      Definition: clutchlog.h:710
      -
      void style(level stage, fmt style)
      Set the style (color and typo) of the given log level, passing a fmt instance.
      Definition: clutchlog.h:1113
      -
      void threshold(level l)
      Set the log level (below which logs are not printed) with an identifier.
      Definition: clutchlog.h:1065
      -
      level threshold() const
      Get the log level below which logs are not printed.
      Definition: clutchlog.h:1069
      -
      virtual bool is_set() const =0
      Should return true if the underying representation encodes an existing color.
      -
      std::map< level, std::string > _level_short
      dictionary of level identifier to their 4-letters representation.
      Definition: clutchlog.h:923
      -
      level
      Available log levels.
      Definition: clutchlog.h:313
      -
      color_256(ground t, const short i)
      Constructor.
      Definition: clutchlog.h:538
      -
      std::ostream & print_on(std::ostream &os) const
      Print the color index on the given stream.
      Definition: clutchlog.h:544
      -
      color_16M(ground t)
      Constructor.
      Definition: clutchlog.h:595
      -
      static size_t default_hfill_max
      Default maximum width (number of characters) for which to fill for right-aligning the right part of m...
      Definition: clutchlog.h:285
      -
      void funchash_styles(std::vector< fmt > styles)
      Set the candidate styles for value-dependant function name formatting.
      Definition: clutchlog.h:1053
      -
      scope_t()
      Constructor.
      Definition: clutchlog.h:1140
      -
      std::regex _in_func
      Current function location filter.
      Definition: clutchlog.h:953
      -
      static std::string default_format
      Default format of the messages.
      Definition: clutchlog.h:223
      -
      bg_16M(short r, short g, short b)
      Numeric triplet constructor.
      Definition: clutchlog.h:689
      -
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      Foreground in 256-colors mode.
      Definition: clutchlog.h:647
      -
      clutchlog::fmt::fg_256 fore_256
      Current foreground in 256-colors mode.
      -
      enum clutchlog::fmt::fg fore
      Foreground color.
      -
      void filehash_styles(std::vector< fmt > styles)
      Set the candidate styles for value-dependant file name formatting.
      Definition: clutchlog.h:1045
      -
      enum clutchlog::fmt::color::ground type
      Type of color (foreground or background).
      -
      Color and style formatter for ANSI terminal escape sequences.
      Definition: clutchlog.h:379
      -
      short index
      The encoded color index in 4-bits ANSI.
      Definition: clutchlog.h:526
      -
      bg_256()
      Empty constructor: no color.
      Definition: clutchlog.h:571
      -
      void func(std::string func)
      Set the regular expression filtering the function location.
      Definition: clutchlog.h:1090
      -
      std::string format() const
      Get the template string.
      Definition: clutchlog.h:986
      -
      std::regex _in_file
      Current file location filter.
      Definition: clutchlog.h:951
      -
      void style(level stage, FMT... styles)
      Set the style (color and typo) of the given log level.
      Definition: clutchlog.h:1111
      -
      bg_256(const bg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:581
      -
      fg_16M()
      Empty constructor: no color.
      Definition: clutchlog.h:649
      -
      level level_of(const std::string name)
      Return the log level tag corresponding to the given pre-configured name.
      Definition: clutchlog.h:1077
      -
      void filename(filename f)
      Sets the file naming scheme. *‍/.
      Definition: clutchlog.h:1118
      -
      const std::map< level, std::string > _level_word
      Dictionary of level identifier to their string representation.
      Definition: clutchlog.h:919
      -
      std::string operator()(const std::string &msg) const
      Format the given string with the currently encoded format.
      Definition: clutchlog.h:808
      -
      color_16M(ground t, short r, short g, short b)
      Numeric triplet constructor.
      Definition: clutchlog.h:604
      -
      std::ostream & print_on(std::ostream &os) const
      Print the color RGB triplet on the given stream.
      Definition: clutchlog.h:639
      -
      bg
      Background color codes.
      Definition: clutchlog.h:424
      -
      #define CLUTCHLOG_DEFAULT_FORMAT
      Compile-time default format of the messages (debug mode: with absolute location).
      Definition: clutchlog.h:208
      -
      std::regex _in_line
      Current line location filter.
      Definition: clutchlog.h:955
      -
      fg_256(const short f)
      Constructor.
      Definition: clutchlog.h:559
      -
      @ colors_256
      256 colors mode.
      -
      enum clutchlog::fmt::ansi mode
      Current ANSI color mode.
      -
      std::string replace(const std::string &form, const std::string &mark, const size_t tag) const
      Replace mark by tag in form, converting tag to its string representation first.
      Definition: clutchlog.h:1268
      -
      std::string format_comment() const
      Get the template string for dumps.
      Definition: clutchlog.h:991
      -
      fg_256()
      Empty constructor: no color.
      Definition: clutchlog.h:554
      -
      @ colors_16M
      16 millions ("true") colors mode.
      -
      std::string _format_dump
      Current format of the file output.
      Definition: clutchlog.h:929
      -
      #define CLUTCHDUMP_DEFAULT_SEP
      Compile-time default item separator for dump.
      Definition: clutchlog.h:249
      -
      bg_256(const short b)
      Constructor.
      Definition: clutchlog.h:576
      -
      ground
      Codes for representing foreground or background.
      Definition: clutchlog.h:487
      -
      filename
      Available filename rendering methods.
      Definition: clutchlog.h:316
      -
      Structure holding a location matching.
      Definition: clutchlog.h:1128
      -
      #define CLUTCHLOG_DEFAULT_HFILL_MARK
      Character used as a filling for right-align the right part of messages with "{hfill}".
      Definition: clutchlog.h:270
      -
      std::ostream & print_on(std::ostream &os) const
      Print the currently encoded format escape code on the given output stream.
      Definition: clutchlog.h:759
      -
      bool is_set() const
      Returns true if the underying representation encodes an existing color.
      Definition: clutchlog.h:541
      -
      std::ostream * _out
      Standard output.
      Definition: clutchlog.h:941
      -
      std::ostream & out()
      Get the output stream on which to print.
      Definition: clutchlog.h:996
      -
      void threshold(const std::string &l)
      Set the log level (below which logs are not printed) with a string.
      Definition: clutchlog.h:1067
      -
      virtual std::ostream & print_on(std::ostream &os) const =0
      Should print the underlying representation on the given stream.
      -
      const std::map< std::string, level > & levels() const
      Get the map of available log levels string representations toward their identifier....
      Definition: clutchlog.h:1071
      -
      size_t _strip_calls
      Current number of call stack levels to remove from depth display.
      Definition: clutchlog.h:917
      -
      level stage
      Current log level.
      Definition: clutchlog.h:1132
      -
      bool there
      Location is compatible.
      Definition: clutchlog.h:1138
      -
      fg_16M(const std::string &srgb)
      Hex triplet string constructor.
      Definition: clutchlog.h:667
      -
      #define CLUTCHLOG_STRIP_CALLS
      Compile-time number of call stack levels to remove from depth display by default.
      Definition: clutchlog.h:263
      -
      friend std::ostream & operator<<(std::ostream &os, const fmt &fmt)
      Output stream overload.
      Definition: clutchlog.h:793
      -
      void log(const level &stage, const std::string &what, const std::string &file, const std::string &func, const size_t line, const size_t depth_delta=0) const
      Print a log message IF the location matches the given one.
      Definition: clutchlog.h:1412
      -
      bg_16M(const bg &)
      Conversion constructor from 16-colors mode.
      Definition: clutchlog.h:702
      -
      bg_16M()
      Empty constructor: no color.
      Definition: clutchlog.h:679
      -
      std::map< std::string, level > _word_level
      Dictionary of level string to their identifier.
      Definition: clutchlog.h:921
      -
      level _stage
      Current log level.
      Definition: clutchlog.h:949
      -
      fmt style(level stage) const
      Get the configured fmt instance of the given log level.
      Definition: clutchlog.h:1115
      -
      typo
      Typographic style codes.
      Definition: clutchlog.h:392
      -
      void location(const std::string &in_file, const std::string &in_function=".*", const std::string &in_line=".*")
      Set the regular expressions filtering the location.
      Definition: clutchlog.h:1095
      -
      #define CLUTCHLOG_HAVE_UNIX_SYSINFO
      True if POSIX headers necessary for stack depth management are available.
      Definition: clutchlog.h:33
      -
      std::vector< fmt > _filehash_fmts
      List of candidate format objects for value-dependant file name styling.
      Definition: clutchlog.h:958
      -
      The single class which holds everything.
      Definition: clutchlog.h:187
      -
      ansi
      ANSI code configuring the available number of colors.
      Definition: clutchlog.h:382
      -
      fg_16M(short r, short g, short b)
      Numeric triplet constructor.
      Definition: clutchlog.h:659
      -
      fg
      Foreground color codes.
      Definition: clutchlog.h:403
      -
      short red
      The encoded RGB indices.
      Definition: clutchlog.h:590
      -
      #define CLUTCHDUMP_DEFAULT_FORMAT
      Compile-time default format of the comment line in file dump.
      Definition: clutchlog.h:231
      -
      color(ansi a, ground g)
      Constructor.
      Definition: clutchlog.h:497
      -
      clutchlog::fmt::bg_256 back_256
      Current background in 256-colors mode.
      diff --git a/docs/dir_000001_000000.html b/docs/dir_000001_000000.html index 113f8b7..6a4b997 100644 --- a/docs/dir_000001_000000.html +++ b/docs/dir_000001_000000.html @@ -2,8 +2,8 @@ - - + + clutchlog: tests -> clutchlog Relation @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,15 +84,13 @@ $(document).ready(function(){initNavTree('dir_59425e443f801f1f2fd8bbe4959a3ccf.h
      -

      tests → clutchlog Relation

      File in testsIncludes file in clutchlog
      t-assert.cppclutchlog.h
      t-color.cppclutchlog.h
      t-color16M.cppclutchlog.h
      t-color256.cppclutchlog.h
      t-demo-extravagant.cppclutchlog.h
      t-demo.cppclutchlog.h
      t-depth-delta.cppclutchlog.h
      t-dump.cppclutchlog.h
      t-filename.cppclutchlog.h
      t-fmt-constructors.cppclutchlog.h
      t-hash-color.cppclutchlog.h
      t-log.cppclutchlog.h
      t-one-line-if.cppclutchlog.h
      +

      tests → clutchlog Relation

      File in testsIncludes file in clutchlog
      t-assert.cppclutchlog.h
      t-color.cppclutchlog.h
      t-color16M.cppclutchlog.h
      t-color256.cppclutchlog.h
      t-demo.cppclutchlog.h
      t-depth-delta.cppclutchlog.h
      t-dump.cppclutchlog.h
      t-extra.cppclutchlog.h
      t-filename.cppclutchlog.h
      t-fmt-constructors.cppclutchlog.h
      t-hash-color.cppclutchlog.h
      t-log.cppclutchlog.h
      t-one-line-if.cppclutchlog.h
      diff --git a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf.html b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf.html index c02b493..aed8097 100644 --- a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf.html +++ b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf.html @@ -2,8 +2,8 @@ - - + + clutchlog: tests Directory Reference @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,8 +84,7 @@ $(document).ready(function(){initNavTree('dir_59425e443f801f1f2fd8bbe4959a3ccf.h
      -
      -
      tests Directory Reference
      +
      tests Directory Reference
      @@ -95,15 +94,43 @@ $(document).ready(function(){initNavTree('dir_59425e443f801f1f2fd8bbe4959a3ccf.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

      +Files

      file  t-assert.cpp [code]
       
      file  t-color.cpp [code]
       
      file  t-color16M.cpp [code]
       
      file  t-color256.cpp [code]
       
      file  t-demo.cpp [code]
       
      file  t-depth-delta.cpp [code]
       
      file  t-dump.cpp [code]
       
      file  t-extra.cpp [code]
       
      file  t-filename.cpp [code]
       
      file  t-fmt-constructors.cpp [code]
       
      file  t-hash-color.cpp [code]
       
      file  t-log.cpp [code]
       
      file  t-one-line-if.cpp [code]
       
      diff --git a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf.js b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf.js new file mode 100644 index 0000000..d9ec44d --- /dev/null +++ b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf.js @@ -0,0 +1,16 @@ +var dir_59425e443f801f1f2fd8bbe4959a3ccf = +[ + [ "t-assert.cpp", "t-assert_8cpp_source.html", null ], + [ "t-color.cpp", "t-color_8cpp_source.html", null ], + [ "t-color16M.cpp", "t-color16_m_8cpp_source.html", null ], + [ "t-color256.cpp", "t-color256_8cpp_source.html", null ], + [ "t-demo.cpp", "t-demo_8cpp_source.html", null ], + [ "t-depth-delta.cpp", "t-depth-delta_8cpp_source.html", null ], + [ "t-dump.cpp", "t-dump_8cpp_source.html", null ], + [ "t-extra.cpp", "t-extra_8cpp_source.html", null ], + [ "t-filename.cpp", "t-filename_8cpp_source.html", null ], + [ "t-fmt-constructors.cpp", "t-fmt-constructors_8cpp_source.html", null ], + [ "t-hash-color.cpp", "t-hash-color_8cpp_source.html", null ], + [ "t-log.cpp", "t-log_8cpp_source.html", null ], + [ "t-one-line-if.cpp", "t-one-line-if_8cpp_source.html", null ] +]; \ No newline at end of file diff --git a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 index 5227a64..a315169 100644 --- a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 +++ b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.md5 @@ -1 +1 @@ -d51cb20523a13c3d778061471eb435e2 \ No newline at end of file +bdf89988b998d4aeafd5521fdb410fa7 \ No newline at end of file diff --git a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg index b3e2837..b0bf5e9 100644 --- a/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg +++ b/docs/dir_59425e443f801f1f2fd8bbe4959a3ccf_dep.svg @@ -13,7 +13,7 @@ dir_59425e443f801f1f2fd8bbe4959a3ccf - + tests @@ -22,7 +22,7 @@ dir_c318bd5cf14aaa5601e6029e0b5b4048 - + clutchlog diff --git a/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html b/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html index ad328b8..8af587f 100644 --- a/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html +++ b/docs/dir_c318bd5cf14aaa5601e6029e0b5b4048.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog Directory Reference @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,14 +84,13 @@ $(document).ready(function(){initNavTree('dir_c318bd5cf14aaa5601e6029e0b5b4048.h
      -
      -
      clutchlog Directory Reference
      +
      clutchlog Directory Reference
      - - +

      +

      Files

      file  clutchlog.h [code]
      file  clutchlog.h [code]
       
      @@ -100,9 +99,7 @@ Files
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,26 +84,27 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
      -
      -
      File List
      +
      File List
      Here is a list of all documented files with brief descriptions:
      - - - - - - - - - - - - - - - +
      [detail level 12]
       clutchlog.h
       t-assert.cpp
       t-color.cpp
       t-color16M.cpp
       t-color256.cpp
       t-demo-extravagant.cpp
       t-demo.cpp
       t-depth-delta.cpp
       t-dump.cpp
       t-filename.cpp
       t-fmt-constructors.cpp
       t-hash-color.cpp
       t-log.cpp
       t-one-line-if.cpp
      + + + + + + + + + + + + + + + +
        clutchlog
       clutchlog.h
        tests
       t-assert.cpp
       t-color.cpp
       t-color16M.cpp
       t-color256.cpp
       t-demo.cpp
       t-depth-delta.cpp
       t-dump.cpp
       t-extra.cpp
       t-filename.cpp
       t-fmt-constructors.cpp
       t-hash-color.cpp
       t-log.cpp
       t-one-line-if.cpp
      @@ -111,9 +112,7 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); }); diff --git a/docs/files_dup.js b/docs/files_dup.js index e4d1828..214fd05 100644 --- a/docs/files_dup.js +++ b/docs/files_dup.js @@ -1,17 +1,5 @@ var files_dup = [ - [ "clutchlog.h", "clutchlog_8h.html", "clutchlog_8h" ], - [ "t-assert.cpp", "t-assert_8cpp_source.html", null ], - [ "t-color.cpp", "t-color_8cpp_source.html", null ], - [ "t-color16M.cpp", "t-color16_m_8cpp_source.html", null ], - [ "t-color256.cpp", "t-color256_8cpp_source.html", null ], - [ "t-demo-extravagant.cpp", "t-demo-extravagant_8cpp_source.html", null ], - [ "t-demo.cpp", "t-demo_8cpp_source.html", null ], - [ "t-depth-delta.cpp", "t-depth-delta_8cpp_source.html", null ], - [ "t-dump.cpp", "t-dump_8cpp_source.html", null ], - [ "t-filename.cpp", "t-filename_8cpp_source.html", null ], - [ "t-fmt-constructors.cpp", "t-fmt-constructors_8cpp_source.html", null ], - [ "t-hash-color.cpp", "t-hash-color_8cpp_source.html", null ], - [ "t-log.cpp", "t-log_8cpp_source.html", null ], - [ "t-one-line-if.cpp", "t-one-line-if_8cpp_source.html", null ] + [ "clutchlog", "dir_c318bd5cf14aaa5601e6029e0b5b4048.html", "dir_c318bd5cf14aaa5601e6029e0b5b4048" ], + [ "tests", "dir_59425e443f801f1f2fd8bbe4959a3ccf.html", "dir_59425e443f801f1f2fd8bbe4959a3ccf" ] ]; \ No newline at end of file diff --git a/docs/functions.html b/docs/functions.html index 31320a1..2780889 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Members @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -86,307 +86,146 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
      Here is a list of all documented class members with links to the class documentation for each member:
      -

      - _ -

      diff --git a/docs/functions_enum.html b/docs/functions_enum.html index f965338..9f32d21 100644 --- a/docs/functions_enum.html +++ b/docs/functions_enum.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Members - Enumerations @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -85,36 +85,20 @@ $(document).ready(function(){initNavTree('functions_enum.html',''); initResizabl
       
      diff --git a/docs/functions_func.html b/docs/functions_func.html index 64f0a99..5039945 100644 --- a/docs/functions_func.html +++ b/docs/functions_func.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Members - Functions @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -86,160 +86,87 @@ $(document).ready(function(){initNavTree('functions_func.html',''); initResizabl
        -

      - b -

      diff --git a/docs/functions_rela.html b/docs/functions_rela.html index 035e264..039fac1 100644 --- a/docs/functions_rela.html +++ b/docs/functions_rela.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Members - Related Functions @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -85,19 +85,14 @@ $(document).ready(function(){initNavTree('functions_rela.html',''); initResizabl diff --git a/docs/functions_vars.html b/docs/functions_vars.html index 5f74176..90d9e8a 100644 --- a/docs/functions_vars.html +++ b/docs/functions_vars.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Members - Variables @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -86,159 +86,83 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
        -

      - _ -

      diff --git a/docs/globals.html b/docs/globals.html index 7584db1..4216408 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -2,8 +2,8 @@ - - + + clutchlog: File Members @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -85,66 +85,30 @@ $(document).ready(function(){initNavTree('globals.html',''); initResizable(); })
      Here is a list of all documented file members with links to the documentation:
      diff --git a/docs/globals_defs.html b/docs/globals_defs.html index 01b28ff..b68e55e 100644 --- a/docs/globals_defs.html +++ b/docs/globals_defs.html @@ -2,8 +2,8 @@ - - + + clutchlog: File Members @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -85,66 +85,30 @@ $(document).ready(function(){initNavTree('globals_defs.html',''); initResizable(
       
      diff --git a/docs/graph_legend.html b/docs/graph_legend.html index 003b89f..16bcdc0 100644 --- a/docs/graph_legend.html +++ b/docs/graph_legend.html @@ -2,8 +2,8 @@ - - + + clutchlog: Graph Legend @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,12 +84,11 @@ $(document).ready(function(){initNavTree('graph_legend.html',''); initResizable(
      -
      -
      Graph Legend
      +
      Graph Legend
      -

      This page explains how to interpret the graphs that are generated by doxygen.

      -

      Consider the following example:

      /*! Invisible class because of truncation */
      +

      This page explains how to interpret the graphs that are generated by doxygen.

      +

      Consider the following example:

      /*! Invisible class because of truncation */
      class Invisible { };
      /*! Truncated class, inheritance relation is hidden */
      @@ -124,7 +123,7 @@ $(document).ready(function(){initNavTree('graph_legend.html',''); initResizable(
      Used *m_usedClass;
      };

      This will result in the following graph:

      -

      The boxes in the above graph have the following meaning:

      +

      The boxes in the above graph have the following meaning:

      • A filled gray box represents the struct or class for which the graph is generated.
      • @@ -135,7 +134,7 @@ A box with a gray border denotes an undocumented struct or class.
      • A box with a red border denotes a documented struct or class forwhich not all inheritance/containment relations are shown. A graph is truncated if it does not fit within the specified boundaries.
      -

      The arrows have the following meaning:

      +

      The arrows have the following meaning:

      • A dark blue arrow is used to visualize a public inheritance relation between two classes.
      • @@ -153,9 +152,7 @@ A yellow dashed arrow denotes a relation between a template instance and the tem diff --git a/docs/group___default_config.html b/docs/group___default_config.html index a06d5bb..c5e3bb9 100644 --- a/docs/group___default_config.html +++ b/docs/group___default_config.html @@ -2,8 +2,8 @@ - - + + clutchlog: Default configuration management @@ -24,11 +24,10 @@
        - + - @@ -36,21 +35,22 @@
        -
        clutchlog -  0.16 +
        +
        clutchlog 0.17
        - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -86,54 +86,168 @@ $(document).ready(function(){initNavTree('group___default_config.html',''); init
      -
      -
      Default configuration management
      +
      Default configuration management

      Detailed Description

      - - - + +

      +

      Macros

      -#define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG   clutchlog::level::progress
       Default level over which calls to the logger are optimized out when NDEBUG is defined.
      #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG   clutchlog::level::progress
       Default level over which calls to the logger are optimized out when NDEBUG is defined. More...
       
      - - - + + - - + + - - + + - - + + - - + + - - + +

      -Default configuration members

      -#define CLUTCHLOG_DEFAULT_FORMAT   "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
       Compile-time default format of the messages (debug mode: with absolute location).

      Default configuration members

      #define CLUTCHLOG_DEFAULT_FORMAT   "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
       
      -#define CLUTCHDUMP_DEFAULT_FORMAT   "# {level} in {func} @ {file}:{line}"
       Compile-time default format of the comment line in file dump.
      #define CLUTCHDUMP_DEFAULT_FORMAT   "# {level} in {func} @ {file}:{line}"
       Compile-time default format of the comment line in file dump. More...
       
      -#define CLUTCHDUMP_DEFAULT_SEP   "\n"
       Compile-time default item separator for dump.
      #define CLUTCHDUMP_DEFAULT_SEP   "\n"
       Compile-time default item separator for dump. More...
       
      -#define CLUTCHLOG_DEFAULT_DEPTH_MARK   ">"
       Compile-time default mark for stack depth.
      #define CLUTCHLOG_DEFAULT_DEPTH_MARK   ">"
       Compile-time default mark for stack depth. More...
       
      -#define CLUTCHLOG_STRIP_CALLS   5
       Compile-time number of call stack levels to remove from depth display by default.
      #define CLUTCHLOG_STRIP_CALLS   5
       Compile-time number of call stack levels to remove from depth display by default. More...
       
      -#define CLUTCHLOG_DEFAULT_HFILL_MARK   '.'
       Character used as a filling for right-align the right part of messages with "{hfill}".
      #define CLUTCHLOG_DEFAULT_HFILL_MARK   '.'
       Character used as a filling for right-align the right part of messages with "{hfill}". More...
       
      +

      Macro Definition Documentation

      + +

      ◆ CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG

      + +
      +
      + + + + +
      #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG   clutchlog::level::progress
      +
      + +

      Default level over which calls to the logger are optimized out when NDEBUG is defined.

      + +

      Definition at line 68 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHLOG_DEFAULT_FORMAT

      + +
      +
      + + + + +
      #define CLUTCHLOG_DEFAULT_FORMAT   "{level_letter} {msg}\t\t\t\t\t{func} @ {file}:{line}\n"
      +
      +

      Compile-time default format of the messages (debug mode: with absolute location).

      + +

      Definition at line 209 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHDUMP_DEFAULT_FORMAT

      + +
      +
      + + + + +
      #define CLUTCHDUMP_DEFAULT_FORMAT   "# {level} in {func} @ {file}:{line}"
      +
      + +

      Compile-time default format of the comment line in file dump.

      + +

      Definition at line 232 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHDUMP_DEFAULT_SEP

      + +
      +
      + + + + +
      #define CLUTCHDUMP_DEFAULT_SEP   "\n"
      +
      + +

      Compile-time default item separator for dump.

      + +

      Definition at line 250 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHLOG_DEFAULT_DEPTH_MARK

      + +
      +
      + + + + +
      #define CLUTCHLOG_DEFAULT_DEPTH_MARK   ">"
      +
      + +

      Compile-time default mark for stack depth.

      + +

      Definition at line 257 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHLOG_STRIP_CALLS

      + +
      +
      + + + + +
      #define CLUTCHLOG_STRIP_CALLS   5
      +
      + +

      Compile-time number of call stack levels to remove from depth display by default.

      + +

      Definition at line 264 of file clutchlog.h.

      + +
      +
      + +

      ◆ CLUTCHLOG_DEFAULT_HFILL_MARK

      + +
      +
      + + + + +
      #define CLUTCHLOG_DEFAULT_HFILL_MARK   '.'
      +
      + +

      Character used as a filling for right-align the right part of messages with "{hfill}".

      + +

      Definition at line 271 of file clutchlog.h.

      + +
      +
      diff --git a/docs/group___formating.html b/docs/group___formating.html index 2a6ff4e..693e752 100644 --- a/docs/group___formating.html +++ b/docs/group___formating.html @@ -2,8 +2,8 @@ - - + + clutchlog: Formating tools @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -86,13 +86,12 @@ $(document).ready(function(){initNavTree('group___formating.html',''); initResiz
      -
      -
      Formating tools
      +
      Formating tools

      Detailed Description

      - @@ -103,9 +102,7 @@ Classes diff --git a/docs/group___formating.js b/docs/group___formating.js index 36c42da..0226961 100644 --- a/docs/group___formating.js +++ b/docs/group___formating.js @@ -1,31 +1,13 @@ var group___formating = [ - [ "fmt", "classclutchlog_1_1fmt.html", [ + [ "clutchlog::fmt", "classclutchlog_1_1fmt.html", [ [ "fmt", "classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a6cc6126d113fc0647ed3acbf29cdc425", null ], - [ "fmt", "classclutchlog_1_1fmt.html#ac69e6d3b7ddaec908c429ac61f354267", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a13453c0b5dbc19d9b510dcdc0352b443", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a65856874070ec0865b3a5b9aeb0e4f3d", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a99b3a05ddf6fa341cee6cb1e5dffc159", null ], - [ "fmt", "classclutchlog_1_1fmt.html#aeea73b0239bf73ebc8ee84c1e6d278e2", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a04f3ba5f6fe81955dca4492a6d259f1c", null ], - [ "fmt", "classclutchlog_1_1fmt.html#ac49c883e3dd17832749cc092b74a9f56", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a194201eb8a400ef13df3e833b8788cdc", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a00feba2b1539529df70e39d615a05941", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a357c93593867f67d9fef562ca07c7dcc", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a2df8f77f58dc9272c94982c4d2275581", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a63b29eb5862a30a194b0256f2ee554a6", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a9458703ab8a3c9fbc6b801011b43f16d", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a0923d7d400f6753d4dae124b71eb5023", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a506718883842dbce3659f42cdf79e52c", null ], - [ "fmt", "classclutchlog_1_1fmt.html#a6d1cc4abe822a569a2624b0829de5dd0", null ], - [ "print_on", "classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0", null ], + [ "print_on", "classclutchlog_1_1fmt.html#ad754c64eb6fd8730a616d113cb9f9129", null ], [ "operator()", "classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c", null ], [ "str", "classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b", null ], - [ "hash", "classclutchlog_1_1fmt.html#a822ded10ae1b0c82f7330481aa4bb64f", null ], - [ "operator<<", "group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7", null ], - [ "operator<<", "group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33", null ], - [ "operator<<", "classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da", null ], + [ "operator<<", "group__colors16.html#gac00a2f504f5308207f7a94915fe9a9c5", null ], + [ "operator<<", "group__colors16.html#ga93d498671d8dc2e796978c4f4de51241", null ], + [ "operator<<", "classclutchlog_1_1fmt.html#a24568f7a157d50e3075a74a619719c84", null ], [ "mode", "classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205", null ], [ "style", "classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b", null ], [ "fore", "group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401", null ], diff --git a/docs/group___main.html b/docs/group___main.html index 1ae3900..0840712 100644 --- a/docs/group___main.html +++ b/docs/group___main.html @@ -2,8 +2,8 @@ - - + +clutchlog: Main class @@ -24,11 +24,10 @@

      +

      Classes

      class  clutchlog::fmt
       Color and style formatter for ANSI terminal escape sequences. More...
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -86,13 +86,12 @@ $(document).ready(function(){initNavTree('group___main.html',''); initResizable(
      -
      -
      Main class
      +
      Main class

      Detailed Description

      - @@ -103,9 +102,7 @@ Classes diff --git a/docs/group___main.js b/docs/group___main.js index 5fc80f3..b5fa18d 100644 --- a/docs/group___main.js +++ b/docs/group___main.js @@ -1,34 +1,26 @@ var group___main = [ [ "clutchlog", "classclutchlog.html", [ - [ "System-dependent stack depth", "index.html#autotoc_md27", null ], - [ "System-dependent horizontal fill", "index.html#autotoc_md28", null ], - [ "Dependencies", "index.html#autotoc_md29", null ], - [ "Variable names within the CLUTCHLOG macro", "index.html#autotoc_md30", null ], - [ "Features", "index.html#autotoc_md31", null ], [ "scope_t", "structclutchlog_1_1scope__t.html", [ [ "scope_t", "structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572", null ], [ "matches", "structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9", null ], [ "stage", "structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744", null ], [ "there", "structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff", null ] ] ], - [ "clutchlog", "classclutchlog.html#a0906d74275cedcd403da94879764815e", null ], - [ "clutchlog", "classclutchlog.html#a03b145e36f15435a640bb5a885d9f642", null ], - [ "logger", "classclutchlog.html#acfaceb77da01503b432644a3efaee4fa", null ], - [ "operator=", "classclutchlog.html#aef653a9744a72a889ca8163269bb781e", null ], + [ "logger", "classclutchlog.html#a6e2a5e98fa9f722d90ba6515895543ac", null ], [ "format", "classclutchlog.html#a656c277e074b64728cca871f2b484d1c", null ], [ "format", "classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80", null ], [ "format_comment", "classclutchlog.html#a2144abe4ec6f630126b6490908b5f924", null ], [ "format_comment", "classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5", null ], [ "out", "classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d", null ], - [ "out", "classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266", null ], + [ "out", "classclutchlog.html#ab7773f031a00a05b8c83c1936406cb98", null ], [ "filehash_styles", "classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf", null ], [ "funchash_styles", "classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416", null ], [ "depth_styles", "classclutchlog.html#a08310b92e86687349e70f56f9ac1d656", null ], [ "threshold", "classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4", null ], [ "threshold", "classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9", null ], [ "threshold", "classclutchlog.html#ab45287cc9c14217904a13aff49573732", null ], - [ "levels", "classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a", null ], + [ "levels", "classclutchlog.html#a8d206443dea964f77965450a83693d98", null ], [ "level_of", "classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd", null ], [ "file", "classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c", null ], [ "func", "classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447", null ], diff --git a/docs/group___use_macros.html b/docs/group___use_macros.html index 9b21266..43410bc 100644 --- a/docs/group___use_macros.html +++ b/docs/group___use_macros.html @@ -2,8 +2,8 @@ - - + +clutchlog: High-level API macros @@ -24,11 +24,10 @@

      +

      Classes

      class  clutchlog
       The single class which holds everything. More...
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -86,24 +86,21 @@ $(document).ready(function(){initNavTree('group___use_macros.html',''); initResi
      -
      -
      High-level API macros
      +
      High-level API macros

      Detailed Description

      - - - + + - - + + @@ -116,7 +113,25 @@ Macros

      +

      Macros

      -#define CLUTCHLOC   __FILE__, __FUNCTION__, __LINE__
       Handy shortcuts to location.
      #define CLUTCHLOC   __FILE__, __FUNCTION__, __LINE__
       Handy shortcuts to location. More...
       
      #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
       Log a message at the given level and with a given depth delta. More...
       
      -#define CLUTCHLOG(LEVEL, WHAT)   CLUTCHLOGD(LEVEL, WHAT, 0)
       Log a message at the given level.
      #define CLUTCHLOG(LEVEL, WHAT)    CLUTCHLOGD(LEVEL, WHAT, 0)
       Log a message at the given level. More...
       
      #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
       Dump the given container. More...
       

      Macro Definition Documentation

      - + +

      ◆ CLUTCHLOC

      + +
      +
      + + + + +
      #define CLUTCHLOC   __FILE__, __FUNCTION__, __LINE__
      +
      + +

      Handy shortcuts to location.

      + +

      Definition at line 78 of file clutchlog.h.

      + +
      +
      +

      ◆ CLUTCHLOGD

      @@ -148,18 +163,52 @@ Macros
      Value:
      do { \
      -
      auto& clutchlog__logger = clutchlog::logger(); \
      +
      auto& clutchlog__logger = clutchlog::logger(); \
      std::ostringstream clutchlog__msg ; clutchlog__msg << WHAT; \
      -
      clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
      +
      clutchlog__logger.log(clutchlog::level::LEVEL, clutchlog__msg.str(), CLUTCHLOC, DEPTH_DELTA); \
      } while(0)
      +
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:307
      +
      #define CLUTCHLOC
      Handy shortcuts to location.
      Definition: clutchlog.h:78

      Log a message at the given level and with a given depth delta.

      -

      Definition at line 81 of file clutchlog.h.

      +

      Definition at line 82 of file clutchlog.h.

      - + +

      ◆ CLUTCHLOG

      + +
      +
      + + + + + + + + + + + + + + + + + + +
      #define CLUTCHLOG( LEVEL,
       WHAT 
      )    CLUTCHLOGD(LEVEL, WHAT, 0)
      +
      + +

      Log a message at the given level.

      + +

      Definition at line 99 of file clutchlog.h.

      + +
      +
      +

      ◆ CLUTCHDUMP

      @@ -191,18 +240,19 @@ Macros
      Value:
      do { \
      -
      auto& clutchlog__logger = clutchlog::logger(); \
      +
      auto& clutchlog__logger = clutchlog::logger(); \
      clutchlog__logger.dump(clutchlog::level::LEVEL, std::begin(CONTAINER), std::end(CONTAINER), \
      - +
      } while(0)
      +
      #define CLUTCHDUMP_DEFAULT_SEP
      Compile-time default item separator for dump.
      Definition: clutchlog.h:250

      Dump the given container.

      -

      Definition at line 107 of file clutchlog.h.

      +

      Definition at line 108 of file clutchlog.h.

      - +

      ◆ CLUTCHFUNC

      @@ -234,8 +284,8 @@ Macros
      Value:
      do { \
      -
      auto& clutchlog__logger = clutchlog::logger(); \
      -
      clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      +
      auto& clutchlog__logger = clutchlog::logger(); \
      +
      clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      if(clutchlog__scope.matches) { \
      FUNC(__VA_ARGS__); \
      } \
      @@ -243,11 +293,11 @@ Macros

      Call any function if the scope matches.

      -

      Definition at line 124 of file clutchlog.h.

      +

      Definition at line 125 of file clutchlog.h.

      - +

      ◆ CLUTCHCODE

      @@ -273,8 +323,8 @@ Macros
      Value:
      do { \
      -
      auto& clutchlog__logger = clutchlog::logger(); \
      -
      clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      +
      auto& clutchlog__logger = clutchlog::logger(); \
      +
      clutchlog::scope_t clutchlog__scope = clutchlog__logger.locate(clutchlog::level::LEVEL, CLUTCHLOC); \
      if(clutchlog__scope.matches) { \
      __VA_ARGS__ \
      } \
      @@ -282,21 +332,16 @@ Macros

      Run any code if the scope matches.

      -

      Definition at line 145 of file clutchlog.h.

      +

      Definition at line 146 of file clutchlog.h.

      -
      static clutchlog & logger()
      Get the logger instance.
      Definition: clutchlog.h:306
      -
      #define CLUTCHLOC
      Handy shortcuts to location.
      Definition: clutchlog.h:77
      -
      #define CLUTCHDUMP_DEFAULT_SEP
      Compile-time default item separator for dump.
      Definition: clutchlog.h:249
      diff --git a/docs/group__colors16.html b/docs/group__colors16.html index 0dcd958..f8df5c5 100644 --- a/docs/group__colors16.html +++ b/docs/group__colors16.html @@ -2,8 +2,8 @@ - - + + clutchlog: Colors management in 16 colors mode (4-bits ANSI). @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -88,97 +88,226 @@ $(document).ready(function(){initNavTree('group__colors16.html',''); initResizab Enumerations | Variables | Friends -
      -
      Colors management in 16 colors mode (4-bits ANSI).
      +
      Colors management in 16 colors mode (4-bits ANSI).

      Detailed Description

      - - - + - - +

      +

      Enumerations

      enum  clutchlog::fmt::fg {
      -  black = 30, -red = 31, -green = 32, -yellow = 33, -
      -  blue = 34, -magenta = 35, -cyan = 36, -white = 37, -
      -  bright_black = 90, -bright_red = 91, -bright_green = 92, -bright_yellow = 93, -
      -  bright_blue = 94, -bright_magenta = 95, -bright_cyan = 96, -bright_white = 97, -
      +
      enum class  clutchlog::fmt::fg {
      +  black = 30 +, red = 31 +, green = 32 +, yellow = 33 +,
      +  blue = 34 +, magenta = 35 +, cyan = 36 +, white = 37 +,
      +  bright_black = 90 +, bright_red = 91 +, bright_green = 92 +, bright_yellow = 93 +,
      +  bright_blue = 94 +, bright_magenta = 95 +, bright_cyan = 96 +, bright_white = 97 +,
        none = -1
      }
       Foreground color codes.
       Foreground color codes. More...
       
      enum  clutchlog::fmt::bg {
      -  black = 40, -red = 41, -green = 42, -yellow = 43, -
      -  blue = 44, -magenta = 45, -cyan = 46, -white = 47, -
      -  bright_black = 100, -bright_red = 101, -bright_green = 102, -bright_yellow = 103, -
      -  bright_blue = 104, -bright_magenta = 105, -bright_cyan = 106, -bright_white = 107, -
      +
      enum class  clutchlog::fmt::bg {
      +  black = 40 +, red = 41 +, green = 42 +, yellow = 43 +,
      +  blue = 44 +, magenta = 45 +, cyan = 46 +, white = 47 +,
      +  bright_black = 100 +, bright_red = 101 +, bright_green = 102 +, bright_yellow = 103 +,
      +  bright_blue = 104 +, bright_magenta = 105 +, bright_cyan = 106 +, bright_white = 107 +,
        none = -1
      }
       Background color codes.
       Background color codes. More...
       
      - - + - +

      +

      Variables

      -enum clutchlog::fmt::fg clutchlog::fmt::fore
      +enum clutchlog::fmt::fg clutchlog::fmt::fore
       Foreground color.
       
      -enum clutchlog::fmt::bg clutchlog::fmt::back
      +enum clutchlog::fmt::bg clutchlog::fmt::back
       Background color.
       
      - - - - - - - + + + + + +

      +

      Friends

      -std::ostream & clutchlog::fmt::operator<< (std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
       Output stream operator for a 3-tuple of 16-colors mode tags.
       
      -std::ostream & clutchlog::fmt::operator<< (std::ostream &os, const typo &s)
       Output stream operator for a typo tag alone, in 16-colors mode.
       
      std::ostream & clutchlog::fmt::operator<< (std::ostream &os, const std::tuple< fg, bg, typo > &fbs)
       Output stream operator for a 3-tuple of 16-colors mode tags. More...
       
      std::ostream & clutchlog::fmt::operator<< (std::ostream &os, const typo &s)
       Output stream operator for a typo tag alone, in 16-colors mode. More...
       
      +

      Enumeration Type Documentation

      + +

      ◆ fg

      + +
      +
      + + + + + +
      + + + + +
      enum class clutchlog::fmt::fg
      +
      +strong
      +
      + +

      Foreground color codes.

      + +

      Definition at line 404 of file clutchlog.h.

      + +
      +
      + +

      ◆ bg

      + +
      +
      + + + + + +
      + + + + +
      enum class clutchlog::fmt::bg
      +
      +strong
      +
      + +

      Background color codes.

      + +

      Definition at line 425 of file clutchlog.h.

      + +
      +
      +

      Friends

      + +

      ◆ operator<< [1/2]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      std::ostream & operator<< (std::ostream & os,
      const std::tuple< fg, bg, typo > & fbs 
      )
      +
      +friend
      +
      + +

      Output stream operator for a 3-tuple of 16-colors mode tags.

      + +

      Definition at line 447 of file clutchlog.h.

      + +
      +
      + +

      ◆ operator<< [2/2]

      + +
      +
      + + + + + +
      + + + + + + + + + + + + + + + + + + +
      std::ostream & operator<< (std::ostream & os,
      const typos 
      )
      +
      +friend
      +
      + +

      Output stream operator for a typo tag alone, in 16-colors mode.

      + +

      Definition at line 469 of file clutchlog.h.

      + +
      +
      diff --git a/docs/group__colors16.js b/docs/group__colors16.js index e5f762e..61ae8aa 100644 --- a/docs/group__colors16.js +++ b/docs/group__colors16.js @@ -1,9 +1,9 @@ var group__colors16 = [ - [ "fg", "group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0", null ], - [ "bg", "group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e", null ], - [ "fore", "group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401", null ], - [ "back", "group__colors16.html#ga86696b20e5b31c96ba592926efb324f3", null ], - [ "operator<<", "group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7", null ], - [ "operator<<", "group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33", null ] + [ "clutchlog::fmt::fg", "group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0", null ], + [ "clutchlog::fmt::bg", "group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e", null ], + [ "clutchlog::fmt::fore", "group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401", null ], + [ "clutchlog::fmt::back", "group__colors16.html#ga86696b20e5b31c96ba592926efb324f3", null ], + [ "clutchlog::fmt::operator<<", "group__colors16.html#gac00a2f504f5308207f7a94915fe9a9c5", null ], + [ "clutchlog::fmt::operator<<", "group__colors16.html#ga93d498671d8dc2e796978c4f4de51241", null ] ]; \ No newline at end of file diff --git a/docs/group__colors256__16_m.html b/docs/group__colors256__16_m.html index 8f5793f..1e99eb5 100644 --- a/docs/group__colors256__16_m.html +++ b/docs/group__colors256__16_m.html @@ -2,8 +2,8 @@ - - + + clutchlog: Internal colors management in 256 and 16M colors modes. @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -87,13 +87,12 @@ $(document).ready(function(){initNavTree('group__colors256__16_m.html',''); init -
      -
      Internal colors management in 256 and 16M colors modes.
      +
      Internal colors management in 256 and 16M colors modes.

      Detailed Description

      - @@ -117,22 +116,22 @@ Classes

      +

      Classes

      struct  clutchlog::fmt::color
       Interface class for colors representation. More...
       background in 256-colors mode. More...
       
      - - + - + - + - +

      +

      Variables

      -clutchlog::fmt::fg_256 clutchlog::fmt::fore_256
      +clutchlog::fmt::fg_256 clutchlog::fmt::fore_256
       Current foreground in 256-colors mode.
       
      -clutchlog::fmt::bg_256 clutchlog::fmt::back_256
      +clutchlog::fmt::bg_256 clutchlog::fmt::back_256
       Current background in 256-colors mode.
       
      -clutchlog::fmt::fg_16M clutchlog::fmt::fore_16M
      +clutchlog::fmt::fg_16M clutchlog::fmt::fore_16M
       Current foreground in 16M-colors mode.
       
      -clutchlog::fmt::bg_16M clutchlog::fmt::back_16M
      +clutchlog::fmt::bg_16M clutchlog::fmt::back_16M
       Current background in 16M-colors mode.
       
      @@ -141,9 +140,7 @@ Variables diff --git a/docs/group__colors256__16_m.js b/docs/group__colors256__16_m.js index 1eda342..bc1dc38 100644 --- a/docs/group__colors256__16_m.js +++ b/docs/group__colors256__16_m.js @@ -1,58 +1,55 @@ var group__colors256__16_m = [ - [ "color", "structclutchlog_1_1fmt_1_1color.html", [ + [ "clutchlog::fmt::color", "structclutchlog_1_1fmt_1_1color.html", [ [ "color", "structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac", null ], [ "is_set", "structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603", null ], - [ "print_on", "structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f", null ], - [ "operator<<", "structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6", null ], - [ "mode", "structclutchlog_1_1fmt_1_1color.html#aacbc3cd9447fdb7d51e02b29b5028a6b", null ], + [ "print_on", "structclutchlog_1_1fmt_1_1color.html#a121619a01bf48e53b3478d23989c0c59", null ], + [ "operator<<", "structclutchlog_1_1fmt_1_1color.html#a4860c13958d21118a564920fa78e6720", null ], [ "type", "structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae", null ], [ "ground", "structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0", [ [ "fore", "structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0ae64e4c4fee28f9ca7301e4c7ff598e67", null ], [ "back", "structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0a469bba0a564235dfceede42db14f17b0", null ] ] ] ] ], - [ "color_256", "structclutchlog_1_1fmt_1_1color__256.html", [ + [ "clutchlog::fmt::color_256", "structclutchlog_1_1fmt_1_1color__256.html", [ [ "color_256", "structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c", null ], [ "color_256", "structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726", null ], [ "is_set", "structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111", null ], - [ "print_on", "structclutchlog_1_1fmt_1_1color__256.html#aaae6106a11eddade981172324a43df68", null ], + [ "print_on", "structclutchlog_1_1fmt_1_1color__256.html#ad4e941accf566378e0007ec881096fb0", null ], [ "index", "structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988", null ] ] ], - [ "fg_256", "structclutchlog_1_1fmt_1_1fg__256.html", [ + [ "clutchlog::fmt::fg_256", "structclutchlog_1_1fmt_1_1fg__256.html", [ [ "fg_256", "structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a", null ], [ "fg_256", "structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59", null ], [ "fg_256", "structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23", null ] ] ], - [ "bg_256", "structclutchlog_1_1fmt_1_1bg__256.html", [ + [ "clutchlog::fmt::bg_256", "structclutchlog_1_1fmt_1_1bg__256.html", [ [ "bg_256", "structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90", null ], [ "bg_256", "structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad", null ], [ "bg_256", "structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd", null ] ] ], - [ "color_16M", "structclutchlog_1_1fmt_1_1color__16_m.html", [ + [ "clutchlog::fmt::color_16M", "structclutchlog_1_1fmt_1_1color__16_m.html", [ [ "color_16M", "structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282", null ], [ "color_16M", "structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3", null ], [ "color_16M", "structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c", null ], [ "is_set", "structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d", null ], - [ "print_on", "structclutchlog_1_1fmt_1_1color__16_m.html#a674910195e7bb14d78f0cf56c308a47e", null ], - [ "red", "structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61", null ], - [ "green", "structclutchlog_1_1fmt_1_1color__16_m.html#ac94eaa04e4f5de4ca6cfe7105ec1c4d4", null ], - [ "blue", "structclutchlog_1_1fmt_1_1color__16_m.html#aedcfa3e0597d9dd883b1783e931bb9af", null ] + [ "print_on", "structclutchlog_1_1fmt_1_1color__16_m.html#ac6a4b8650ea7e9171fc76d6226015005", null ], + [ "red", "structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61", null ] ] ], - [ "fg_16M", "structclutchlog_1_1fmt_1_1fg__16_m.html", [ + [ "clutchlog::fmt::fg_16M", "structclutchlog_1_1fmt_1_1fg__16_m.html", [ [ "fg_16M", "structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194", null ], [ "fg_16M", "structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5", null ], [ "fg_16M", "structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3", null ], [ "fg_16M", "structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8", null ] ] ], - [ "bg_16M", "structclutchlog_1_1fmt_1_1bg__16_m.html", [ + [ "clutchlog::fmt::bg_16M", "structclutchlog_1_1fmt_1_1bg__16_m.html", [ [ "bg_16M", "structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0", null ], [ "bg_16M", "structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501", null ], [ "bg_16M", "structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97", null ], [ "bg_16M", "structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d", null ] ] ], - [ "fore_256", "group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c", null ], - [ "back_256", "group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0", null ], - [ "fore_16M", "group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de", null ], - [ "back_16M", "group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0", null ] + [ "clutchlog::fmt::fore_256", "group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c", null ], + [ "clutchlog::fmt::back_256", "group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0", null ], + [ "clutchlog::fmt::fore_16M", "group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de", null ], + [ "clutchlog::fmt::back_16M", "group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0", null ] ]; \ No newline at end of file diff --git a/docs/hierarchy.html b/docs/hierarchy.html index a9d01bd..1f30351 100644 --- a/docs/hierarchy.html +++ b/docs/hierarchy.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Hierarchy @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -84,8 +84,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
      -
      -
      Class Hierarchy
      +
      Class Hierarchy
      @@ -109,9 +108,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically: diff --git a/docs/index.html b/docs/index.html index 5f42249..74a91a2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,8 +2,8 @@ - - + + clutchlog: Clutchlog — versatile (de)clutchable spatial logging @@ -24,11 +24,10 @@
      - + - @@ -36,21 +35,22 @@
      -
      clutchlog -  0.16 +
      +
      clutchlog 0.17
      - + +/* @license-end */ +
      @@ -64,7 +64,7 @@ $(function() {
      @@ -83,9 +83,8 @@ $(document).ready(function(){initNavTree('index.html',''); initResizable(); }); -
      -
      -
      Clutchlog — versatile (de)clutchable spatial logging
      +
      +
      Clutchlog — versatile (de)clutchable spatial logging

      Table of Contents

      @@ -129,76 +128,81 @@ $(document).ready(function(){initNavTree('index.html',''); initResizable(); });
  • Build and tests
  • +
  • Usage as a Git submodule
  • -

    Clutchlog is a spatial logging system that targets versatile debugging. It allows to (de)clutch messages for a given: log level, source code location or call stack depth.

    +

    +

    Clutchlog is a spatial logging system that targets versatile debugging. It allows to (de)clutch messages for a given: log level, source code location or call stack depth.

    -

    -

    <img alt"Clutchlog logo" src="https://raw.githubusercontent.com/nojhan/clutchlog/master/docs/clutchlog_logo.svg" width="400" />

    +

    +

    <img alt"Clutchlog logo" src="https://raw.githubusercontent.com/nojhan/clutchlog/master/docs/clutchlog_logo.svg" width="400" />

    Features

    -

    Clutchlog allows to select which log messages will be displayed, based on their locations:

    +

    Clutchlog allows to select which log messages will be displayed, based on their locations:

    • Classical log levels: each message has a given detail level and it is displayed if you ask for a at least the same one.
    • Call stack depth: you can ask to display messages within functions that are called up to a given stack depth.
    • Source code location: you can ask to display messages called from given files, functions and line number, all based on regular expressions.
    -

    Additionally, Clutchlog will do its best to allow the compiler to optimize out calls, for instance debug messages in "Release" builds.

    -

    Additional features:

    +

    Additionally, Clutchlog will do its best to allow the compiler to optimize out calls, for instance debug messages in "Release" builds.

    +

    Additional features:

    • Templated log format, to easily design your own format.
    • -
    • Colored log. By default only important ones are colored (critical and error in red, warning in magenta).
    • +
    • Powerful Styling. Clutchlog comes with many options to color its output, for example by using colors with a semantic meaning, so that visually parse the logs is easy.
    • Macro to dump the content of a container in a file with automatic naming (yes, it is useful for fast debugging).
    • Generic clutching wrapper, to wrap any function call. Useful to (de)clutch asserts for example.

    Example

    -

    Adding a message is a simple as calling a macro (which is declutched in Debug build type, when NDEBUG is not defined):

    CLUTCHLOG(info, "matrix size: " << m << "x" << n);
    -

    To configure the display, you indicate the three types of locations, for example in your main function:

    auto& log = clutchlog::logger();
    +

    Adding a message is a simple as calling a macro (which is declutched in Debug build type, when NDEBUG is not defined):

    CLUTCHLOG(info, "matrix size: " << m << "x" << n);
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    +

    To configure the display, you indicate the three types of locations, for example in your main function:

    auto& log = clutchlog::logger();
    log.depth(2); // Log functions called from "main" but not below.
    log.threshold("Info"); // Log only "info", "warning", "error" or "critical" messages.
    log.file("algebra/.*"); // Will match any file in the "algebra" directory.
    log.func("(mul|add|sub|div)"); // Will match "multiply", for instance.
    -

    Example of a real-life log session (as seen in the frictionlesser software):

    -

    A log screen capture with full details, showing colored messages and location.

    -

    Demo showing fancy styling:

    -

    A log screen capture showing fancy coloring of text lines.

    -

    For more detailled examples, see the "Usage" sections below and the tests directory.

    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +

    Example of a real-life log session (as seen in the frictionlesser software):

    +

    A log screen capture with full details, showing colored messages and location.

    +

    Demo showing fancy styling:

    +

    A log screen capture showing fancy coloring of text lines.

    +

    For more detailled examples, see the "Usage" sections below and the tests directory.

    Rationale

    -

    Most of existing logging systems targets service events storage, like fast queuing of transactions in a round-robin database. Their aim is to provide a simple interface to efficiently store messages somewhere, which is appropriated when you have a well known service running and you want to be able to trace complex users interactions across its states.

    -

    Clutchlog, however, targets the debugging of a (typically single-run) program. While you develop your software, it's common practice to output several detailled informations on the internal states around the feature you are currently programming. However, once the feature is up and running, those detailled informations are only useful if you encounter a bug traversing this specific part.

    -

    While tracing a bug, it is tedious to uncomment old debugging code (and go on the build-test cycle) or to set up a full debugger session that displays all appropriate data (with ad-hoc fancy hooks).

    -

    To solve this problem, Clutchlog allows to disengage at runtime your debug log messages in various parts of the program, allowing for the fast tracking of a bug across the execution.

    +

    Most of existing logging systems targets service events storage, like fast queuing of transactions in a round-robin database. Their aim is to provide a simple interface to efficiently store messages somewhere, which is appropriated when you have a well known service running and you want to be able to trace complex users interactions across its states.

    +

    Clutchlog, however, targets the debugging of a (typically single-run) program. While you develop your software, it's common practice to output several detailled informations on the internal states around the feature you are currently programming. However, once the feature is up and running, those detailled informations are only useful if you encounter a bug traversing this specific part.

    +

    While tracing a bug, it is tedious to uncomment old debugging code (and go on the build-test cycle) or to set up a full debugger session that displays all appropriate data (with ad-hoc fancy hooks).

    +

    To solve this problem, Clutchlog allows to disengage at runtime your debug log messages in various parts of the program, allowing for the fast tracking of a bug across the execution.

    Basic Usage

    Calls

    -

    The main entrypoint is the CLUTCHLOG macro, which takes the desired log level and message. The message can be anything that can be output in an ostringstream.

    // Simple string:
    -
    CLUTCHLOG(info, "hello world");
    +

    The main entrypoint is the CLUTCHLOG macro, which takes the desired log level and message. The message can be anything that can be output in an ostringstream.

    // Simple string:
    +
    CLUTCHLOG(info, "hello world");
    // Serialisable variable:
    double value = 0;
    -
    CLUTCHLOG(error, value);
    +
    CLUTCHLOG(error, value);
    // passed using inline output stream operators:
    -
    CLUTCHLOG(debug, "hello " << value << " world");
    -

    There is also a macro to dump the content of an iterable within a separate file: CLUTCHDUMP. This function takes care of incrementing a numeric suffix in the file name, if an existing file with this name exists.

    std::vector<int> v(10);
    +
    CLUTCHLOG(debug, "hello " << value << " world");
    +

    There is also a macro to dump the content of an iterable within a separate file: CLUTCHDUMP. This function takes care of incrementing a numeric suffix in the file name, if an existing file with this name exists.

    std::vector<int> v(10);
    std::generate(v.begin(), v.end(), std::rand);
    -
    CLUTCHDUMP(debug, vec, "test_{n}.dat");
    +
    CLUTCHDUMP(debug, vec, "test_{n}.dat");
    /* Will output in cat "rand_0.dat"
    * # [t-dump] Info in main (at depth 5) @ /home/nojhan/code/clutchlog/tests/t-dump.cpp:22
    * 1804289383
    * 846930886
    * 1681692777
    */
    -

    Note that if you pass a file name without the {n} tag, the file will be overwritten as is.

    +
    #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
    Dump the given container.
    Definition: clutchlog.h:108
    +

    Note that if you pass a file name without the {n} tag, the file will be overwritten as is.

    Log level semantics

    -

    Log levels use a classical semantics for a human skilled in the art, in decreasing order of importance:

    +

    Log levels use a classical semantics for a human skilled in the art, in decreasing order of importance:

    • Critical: an error that cannot be recovered. For instance, something which will make a server stop right here.
    • Error: an error that invalidates a function, but may still be recovered. For example, a bad user input that will make a server reset its state, but not crash.
    • @@ -209,24 +213,24 @@ Log level semantics
    • Debug: data that would help debugging the program if there was a bug later on.
    • XDebug: debugging information that would be heavy to read.
    -

    Note: the log levels constants are lower case (for example: clutchlog::level::xdebug), but their string representation is not (e.g. "XDebug", this should be taken into account when using clutchlog::threshold or clutchlog::level_of).

    +

    Note: the log levels constants are lower case (for example: clutchlog::level::xdebug), but their string representation is not (e.g. "XDebug", this should be taken into account when using clutchlog::threshold or clutchlog::level_of).

    Location filtering

    -

    To configure the global behaviour of the logger, you must first get a reference on its (singleton) instance:

    auto& log = clutchlog::logger();
    -

    One can configure the location(s) at which messages should actually be logged:

    log.depth(3); // Depth of the call stack, defaults to the maximum possible value.
    +

    To configure the global behaviour of the logger, you must first get a reference on its (singleton) instance:

    auto& log = clutchlog::logger();
    +

    One can configure the location(s) at which messages should actually be logged:

    log.depth(3); // Depth of the call stack, defaults to the maximum possible value.
    log.threshold(clutchlog::level::error); // Log level, defaults to error.
    -

    Current levels are defined in an enumeration as clutchlog::level:

    enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
    -

    File, function and line filters are indicated using (ECMAScript) regular expressions:

    log.file(".*"); // File location, defaults to any.
    +

    Current levels are defined in an enumeration as clutchlog::level:

    enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7};
    +

    File, function and line filters are indicated using (ECMAScript) regular expressions:

    log.file(".*"); // File location, defaults to any.
    log.func(".*"); // Function location, defaults to any.
    log.line(".*"); // Line location, defaults to any.
    -

    A shortcut function can be used to filter all at once:

    log.location(file, func, line); // Defaults to any, second and last parameters being optional.
    -

    Strings may be used to set up the threshold:

    log.threshold("Error"); // You have to know the exact —case sensitive— string.
    -

    Note that the case of the log levels strings matters (see below).

    +

    A shortcut function can be used to filter all at once:

    log.location(file, func, line); // Defaults to any, second and last parameters being optional.
    +

    Strings may be used to set up the threshold:

    log.threshold("Error"); // You have to know the exact —case sensitive— string.
    +

    Note that the case of the log levels strings matters (see below).

    Output Configuration

    -

    The output stream can be configured using the clutchlog::out method:

    log.out(std::clog); // Defaults to clog.
    -

    The format of the messages can be defined with the clutchlog::format method, passing a string with standardized tags surrounded by {}:

    log.format("{msg}");
    -

    Available tags are:

    +

    The output stream can be configured using the clutchlog::out method:

    log.out(std::clog); // Defaults to clog.
    +

    The format of the messages can be defined with the clutchlog::format method, passing a string with standardized tags surrounded by {}:

    log.format("{msg}");
    +

    Available tags are:

    • {msg}: the logged message,
    • {level}: the current log level (i.e. Critical, Error, Warning, Progress, Note, Info, Debug or XDebug),
    • @@ -239,7 +243,7 @@ Output Configuration
    • {filehash_fmt}: a style for file names, which is value-dependant (see clutchlog::filehash_styles),
    • {funchash_fmt}: a style for function names, which is value-dependant (see clutchlog::funchash_styles).
    -

    Some tags are only available on POSIX operating systems as of now:

      +

      Some tags are only available on POSIX operating systems as of now:

      • {name}: the name of the current binary,
      • {depth}: the current depth of the call stack,
      • {depth_marks}: as many chevrons > as there is calls in the stack,
      • @@ -248,27 +252,28 @@ Output Configuration

      Log Format

      -

      The default log format is "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func} @ {file}:{line}\n", it can be overriden at compile time by defining the CLUTCHLOG_DEFAULT_FORMAT macro.

      -

      By default, and if CLUTCHLOG_DEFAULT_FORMAT is not defined, clutchlog will not put the location-related tags in the message formats (i.e. {name}, {func}, and {line}) when not in Debug builds.

      +

      The default log format is "[{name}] {level_letter}:{depth_marks} {msg} {hfill} {func} @ {file}:{line}\n", it can be overriden at compile time by defining the CLUTCHLOG_DEFAULT_FORMAT macro.

      +

      By default, and if CLUTCHLOG_DEFAULT_FORMAT is not defined, clutchlog will not put the location-related tags in the message formats (i.e. {name}, {func}, and {line}) when not in Debug builds.

      Output Styling

      -

      Output lines can be styled differently depending on their content.

      -

      For example, output lines can be colored differently depending on the log level.

      // Print error messages in bold red:
      +

      Output lines can be styled differently depending on their content.

      +

      For example, output lines can be colored differently depending on the log level.

      // Print error messages in bold red:
      log.style(level::error, // First, the log level.
      fmt::fg::red, // Then the styles, in any order...
      fmt::typo::bold);
      -

      Or, if you want to declare some semantics beforehand:

      // Print warning messages in bold magenta:
      -
      using fmt = clutchlog::fmt;
      +

      Or, if you want to declare some semantics beforehand:

      // Print warning messages in bold magenta:
      +
      using fmt = clutchlog::fmt;
      fmt warn(fmt::fg::magenta, fmt::typo::bold);
      log.style(level::warning, warn);
      -

      Note: this inserts a style marker at the very beginning of the line. If you add other styles later on the line, they will take precedence.

      -

      Colors can be specified in several different ways. The ANSI color mode will be automatically detected, depending on the types of arguments passed to styling functions:

      Note: this inserts a style marker at the very beginning of the line. If you add other styles later on the line, they will take precedence.

      +

      Colors can be specified in several different ways. The ANSI color mode will be automatically detected, depending on the types of arguments passed to styling functions:

      • named tags from clutchlog::fmt::fg or clutchlog::fmt::bg will encode a 16-colors mode,
      • integers will encode a 256-colors mode,
      • numeric triplets or web hex strings will encode a 16 million ("true") colors mode,
      • clutchlog::fg::none and clutchlog::bg::none can be passed in all modes.
      -

      For example, all the following lines encode a bright red foreground for the critical level (see the "Colors" section below):

      log.style(level:critical,
      +

      For example, all the following lines encode a bright red foreground for the critical level (see the "Colors" section below):

      log.style(level:critical,
      fmt::fg::red); // 16-colors mode.
      log.style(level:critical,
      255); // 256-colors mode.
      @@ -276,7 +281,7 @@ Output Styling
      255,0,0); // 16M-colors mode.
      log.style(level:critical,
      "#ff0000"); // 16M-colors mode again.
      -

      You may use styling within the format message template itself, to add even more colors:

      using fmt = clutchlog::fmt;
      +

      You may use styling within the format message template itself, to add even more colors:

      using fmt = clutchlog::fmt;
      std::ostringstream format;
      fmt discreet(fmt::fg::blue);
      format << "{level}: "
      @@ -284,12 +289,12 @@ Output Styling
      << fmt(fmt::fg::yellow) << "{line}" // Used as a tag (no reset inserted).
      << fmt(fmt::typo::reset) << " {msg}" << std::endl; // This is a reset.
      log.format(format.str());
      -

      Note: messages at the "critical", "error" and "warning" log levels are colored by default. You may want to set their style to none if you want to stay in control of inserted colors in the format template.

      -

      The horizontal filling line (the {hfill} tag) can be configured separately with clutchlog::hfill_style, for example:

      log.hfill_style(fmt::fg::black);
      -

      Note: this will actually reset any styling after the hfill, disabling any style you would have set for the whole message using clutchlog::format for the remaining of the message.

      +

      Note: messages at the "critical", "error" and "warning" log levels are colored by default. You may want to set their style to none if you want to stay in control of inserted colors in the format template.

      +

      The horizontal filling line (the {hfill} tag) can be configured separately with clutchlog::hfill_style, for example:

      log.hfill_style(fmt::fg::black);
      +

      Note: this will actually reset any styling after the hfill, disabling any style you would have set for the whole message using clutchlog::format for the remaining of the message.

      Typographic Style

      -

      Available typographies:

      +

      Available typographies:

      • reset (remove any style),
      • bold,
      • @@ -297,17 +302,17 @@ Typographic Style
      • inverse,
      • none.
      -

      Typographic styles are always passed with the named tag (see clutchlog::fmt::typo), whatever the color mode.

      +

      Typographic styles are always passed with the named tag (see clutchlog::fmt::typo), whatever the color mode.

      Colors

      16-colors mode

      -

      Using the clutchlog::fmt class, you can style:

      +

      Using the clutchlog::fmt class, you can style:

      -

      In 16-colors mode, any of the arguments may be passed, in any order, if an argument is omitted, it defaults to no color/style.

      -

      Available colors are:

      +

      In 16-colors mode, any of the arguments may be passed, in any order, if an argument is omitted, it defaults to no color/style.

      +

      Available colors are:

      • black,
      • red,
      • @@ -327,60 +332,63 @@ Colors
      • bright_white,
      • none.
      -

      Note: some terminals allow the user to configure the actual encoding of those colors. You may thus notice some difference with the expected rendering of the same colors encoded in the other modes. Use the other color modes if you want to fully control the actual color rendering.

      +

      Note: some terminals allow the user to configure the actual encoding of those colors. You may thus notice some difference with the expected rendering of the same colors encoded in the other modes. Use the other color modes if you want to fully control the actual color rendering.

      256-colors mode

      -

      For 256-colors mode, colors are expected to be passed as integers in [-1,255] or the fg::none and bg::none tags.

      -

      In 256-colors mode, if you want to only encode the background color, you cannot just omit the foreground color, you have to bass a fg::none tag as first argument.

      +

      For 256-colors mode, colors are expected to be passed as integers in [-1,255] or the fg::none and bg::none tags.

      +

      In 256-colors mode, if you want to only encode the background color, you cannot just omit the foreground color, you have to bass a fg::none tag as first argument.

      log.style(level::info, fg::none, 52); // No color over dark red.
      log.style(level::info, fg::none, 52, typo::bold); // No color over bold dark red.

      16 million colors mode (RGB)

      -

      For 16M-colors mode, colors can be encoded as:

        +

        For 16M-colors mode, colors can be encoded as:

        • three integer arguments,
        • a "web color" hexadecimal triplet string, starting with a leading number sign (e.g. "#0055ff").
        • the fg::none and bg::none tags.
        -

        In 16M-colors mode, if you want to only encode the background color, you cannot just omit the foreground color, you have to pass a fg::none tag as first argument.

        +

        In 16M-colors mode, if you want to only encode the background color, you cannot just omit the foreground color, you have to pass a fg::none tag as first argument.

        log.style(level::info, fg::none, 100,0,0); // No color over dark red.
        log.style(level::info, fg::none, 100,0,0, typo::bold); // No color over bold dark red.

        Value-dependant Format Tags

        -

        Some tags can be used to change the style of (part of) the output line,

        -

        depending on its content. The {filehash_fmt} and {funchash_fmt} will introduce a styling sequence which depends on the current file name, and function name respectively. The chosen style is chosen at random among the candidate ones, but will always be the same for each value.

        -

        The set of candidate styles can be configured with clutchlog::filehash_styles and clutchlog::funchash_styles, which both take a vector of clutchlog::fmt objects as argument:

        // Either one or the other color for filenames:
        +

        Some tags can be used to change the style of (part of) the output line,

        +

        depending on its content. The {filehash_fmt} and {funchash_fmt} will introduce a styling sequence which depends on the current file name, and function name respectively. The chosen style is chosen at random among the candidate ones, but will always be the same for each value.

        +

        The set of candidate styles can be configured with clutchlog::filehash_styles and clutchlog::funchash_styles, which both take a vector of clutchlog::fmt objects as argument:

        // Either one or the other color for filenames:
        log.filehash_styles( { fmt(fg::red), fmt(fg::yellow) } );
        // This would fix the function name style to a single one:
        log.funchash_styles( { fmt(typo::bold) } );
        // Works with any `fmt` constructor
        // (here, shades of blues in 256-colors mode):
        log.funchash_styles( { fmt(33), fmt(27), fmt(39), fmt(45) } );
        -

        The same idea applies to {depth_fmt}. However, if clutchlog::depth_styles is configured, then the styles are chosen in order. That is, a depth of 1 would lead to the first style being chosen. If the current depth of the stack is larger than the number of configured styles, then the last one is used. For example:

        // Increasingly darker depth level colors (using the 256-colors mode).
        +

        The same idea applies to {depth_fmt}. However, if clutchlog::depth_styles is configured, then the styles are chosen in order. That is, a depth of 1 would lead to the first style being chosen. If the current depth of the stack is larger than the number of configured styles, then the last one is used. For example:

        // Increasingly darker depth level colors (using the 256-colors mode).
        log.depth_styles({ fmt(255), fmt(250), fmt(245), fmt(240), fmt(235) });
        -

        If clutchlog::depth_styles is set, the {depth_marks} template tag will render with each mark having each own style corresponding to its depth. Note: a depth of zero showing no mark, the first style in the list is never applied to marks.

        +

        If clutchlog::depth_styles is set, the {depth_marks} template tag will render with each mark having each own style corresponding to its depth. Note: a depth of zero showing no mark, the first style in the list is never applied to marks.

        Advanced Usage

        More Output Configuration

        Dump Format

        -

        The default format of the first line of comment added with the dump macro is "# [{name}] {level} in {func} (at depth {depth}) @ {file}:{line}". It can be edited with the format_comment method. If it is set to an empty string, then no comment line is added. The default can be modified at compile time with CLUTCHDUMP_DEFAULT_FORMAT.

        -

        By default, the separator between items in the container is a new line. To change this behaviour, you can change CLUTCHDUMP_DEFAULT_SEP or call the low-level dump method.

        -

        By default, and if CLUTCHDUMP_DEFAULT_FORMAT is not defined, clutchlog will not put the location-related tags in the message formats (i.e. {file} and {line}) when not in Debug builds.

        +

        The default format of the first line of comment added with the dump macro is "# [{name}] {level} in {func} (at depth {depth}) @ {file}:{line}". It can be edited with the format_comment method. If it is set to an empty string, then no comment line is added. The default can be modified at compile time with CLUTCHDUMP_DEFAULT_FORMAT.

        +

        By default, the separator between items in the container is a new line. To change this behaviour, you can change CLUTCHDUMP_DEFAULT_SEP or call the low-level dump method.

        +

        By default, and if CLUTCHDUMP_DEFAULT_FORMAT is not defined, clutchlog will not put the location-related tags in the message formats (i.e. {file} and {line}) when not in Debug builds.

        Stack Depth Mark

        -

        The mark used with the {depth_marks} tag can be configured with the clutchlog::depth_mark method, and its default with the CLUTCHLOG_DEFAULT_DEPTH_MARK macro:

        log.depth_mark(CLUTCHLOG_DEFAULT_DEPTH_MARK); // Defaults to ">".
        +

        The mark used with the {depth_marks} tag can be configured with the clutchlog::depth_mark method, and its default with the CLUTCHLOG_DEFAULT_DEPTH_MARK macro:

        log.depth_mark(CLUTCHLOG_DEFAULT_DEPTH_MARK); // Defaults to ">".
        +
        #define CLUTCHLOG_DEFAULT_DEPTH_MARK
        Compile-time default mark for stack depth.
        Definition: clutchlog.h:257

        Horizontal Filling

        -

        The character used with the {hfill} tag can be configured wth the clutchlog::hfill_mark method, and its default with the CLUTCHLOG_DEFAULT_HFILL_MARK macro:

        log.hfill_mark(CLUTCHLOG_DEFAULT_HFILL_MARK); // Defaults to '.'.
        -

        Clutchlog measures the width of the standard error channel. If it is redirected, it may be measured as very large (or very small). Thus, the clutchlog::hfill_min clutchlog::hfill_max accessors allow to set a minimum and a maximum width (in number of characters).

        log.hfill_max(CLUTCHLOG_DEFAULT_HFILL_MAX); // Defaults to 300.
        +

        The character used with the {hfill} tag can be configured wth the clutchlog::hfill_mark method, and its default with the CLUTCHLOG_DEFAULT_HFILL_MARK macro:

        log.hfill_mark(CLUTCHLOG_DEFAULT_HFILL_MARK); // Defaults to '.'.
        +
        #define CLUTCHLOG_DEFAULT_HFILL_MARK
        Character used as a filling for right-align the right part of messages with "{hfill}".
        Definition: clutchlog.h:271
        +

        Clutchlog measures the width of the standard error channel. If it is redirected, it may be measured as very large (or very small). Thus, the clutchlog::hfill_min clutchlog::hfill_max accessors allow to set a minimum and a maximum width (in number of characters).

        log.hfill_max(CLUTCHLOG_DEFAULT_HFILL_MAX); // Defaults to 300.
        log.hfill_min(CLUTCHLOG_DEFAULT_HFILL_MIN); // Defaults to 150.
        -

        Note: clutchlog will use the measured width, unless it goes out of [clutchlog::hfill_min,clutchlog::hfill_max], in which case it will be caped to those bounds.

        +

        Note: clutchlog will use the measured width, unless it goes out of [clutchlog::hfill_min,clutchlog::hfill_max], in which case it will be caped to those bounds.

        Stack Depth

        -

        By default, clutchlog removes 5 levels of the calls stack, so that your main entrypoint corresponds to a depth of zero. You can change this behaviour by defining the CLUTCHLOG_STRIP_CALLS macro, or calling clutchlog::strip_calls.

        log.strip_calls(CLUTCHLOG_STRIP_CALLS); // Defaults to 5.
        +

        By default, clutchlog removes 5 levels of the calls stack, so that your main entrypoint corresponds to a depth of zero. You can change this behaviour by defining the CLUTCHLOG_STRIP_CALLS macro, or calling clutchlog::strip_calls.

        log.strip_calls(CLUTCHLOG_STRIP_CALLS); // Defaults to 5.
        +
        #define CLUTCHLOG_STRIP_CALLS
        Compile-time number of call stack levels to remove from depth display by default.
        Definition: clutchlog.h:264

        Filename

        -

        By default, the {file} template tag is rendered as the absolute path (which is usualy handy if your terminal detects paths and allows to run a command on click).

        -

        You can change this behavior to display shorter names, using clutchlog::filename, and passing one of the following the shortening method:

          +

          By default, the {file} template tag is rendered as the absolute path (which is usualy handy if your terminal detects paths and allows to run a command on click).

          +

          You can change this behavior to display shorter names, using clutchlog::filename, and passing one of the following the shortening method:

          • clutchlog::filename::base: the file name itself,
          • clutchlog::filename::dir: the name of the single last directory containing the file,
          • clutchlog::filename::dirbase: the last directory and the file names,
          • @@ -388,7 +396,7 @@ Filename
          • clutchlog::filename::dirstem: the last directory and the file without extension.
          • clutchlog::filename::path: the absolute path (the default).
          -

          Example:

          log.filename(clutchlog::filename::path) // /home/nojhan/code/clutchlog/tests/t-filename.cpp
          +

          Example:

          log.filename(clutchlog::filename::path) // /home/nojhan/code/clutchlog/tests/t-filename.cpp
          log.filename(clutchlog::filename::base) // t-filename.cpp
          log.filename(clutchlog::filename::dir) // tests
          log.filename(clutchlog::filename::dirbase) // tests/t-filename.cpp
          @@ -396,41 +404,44 @@ Filename
          log.filename(clutchlog::filename::dirstem) // tests/t-filename

          Disabled calls

          -

          By default, clutchlog is always enabled if the NDEBUG preprocessor variable is not defined (this variable is set by CMake in build types that differs from Debug).

          -

          You can however force clutchlog to be enabled in any build type by setting the WITH_CLUTCHLOG preprocessor variable.

          -

          When the NDEBUG preprocessor variable is set (e.g. in Release build), clutchlog will do its best to allow the compiler to optimize out any calls for log levels that are under progress.

          -

          You can change this behavior at compile time by setting the CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG preprocessor variable to the desired maximum log level, for example:

          // Will always allow to log everything even in Release mode.
          +

          By default, clutchlog is always enabled if the NDEBUG preprocessor variable is not defined (this variable is set by CMake in build types that differs from Debug).

          +

          You can however force clutchlog to be enabled in any build type by setting the WITH_CLUTCHLOG preprocessor variable.

          +

          When the NDEBUG preprocessor variable is set (e.g. in Release build), clutchlog will do its best to allow the compiler to optimize out any calls for log levels that are under progress.

          +

          You can change this behavior at compile time by setting the CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG preprocessor variable to the desired maximum log level, for example:

          // Will always allow to log everything even in Release mode.
          #define CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG clutchlog::level::xdebug
          -

          Note that allowing a log level does not mean that it will actually output something. If the configured log level at runtime is lower than the log level of the message, it will still not be printed.

          -

          This behavior intend to remove as many conditional statements as possible when not debugging, without having to use preprocessor guards around calls to clutchlog, thus saving run time at no readability cost.

          +

          Note that allowing a log level does not mean that it will actually output something. If the configured log level at runtime is lower than the log level of the message, it will still not be printed.

          +

          This behavior intend to remove as many conditional statements as possible when not debugging, without having to use preprocessor guards around calls to clutchlog, thus saving run time at no readability cost.

          Low-level API

          -

          All configuration setters have a getters counterpart, with the same name but taking no parameter, for example:

          std::string mark = log.depth_mark();
          -

          To control more precisely the logging, one can use the low-level clutchlog::log method:

          log.log(clutchlog::level::xdebug, "hello world", "main.cpp", "main", 122);
          -

          A helper macro can helps to fill in the location with the actual one, as seen by the compiler:

          log.log(clutchlog::level::xdebug, "hello world", CLUTCHLOC);
          -

          A similar dump method exists:

          log.dump(clutchlog::level::xdebug, cont.begin(), cont.end(), CLUTCHLOC, "dumped_{n}.dat", "\n");
          +

          All configuration setters have a getters counterpart, with the same name but taking no parameter, for example:

          std::string mark = log.depth_mark();
          +

          To control more precisely the logging, one can use the low-level clutchlog::log method:

          log.log(clutchlog::level::xdebug, "hello world", "main.cpp", "main", 122);
          +

          A helper macro can helps to fill in the location with the actual one, as seen by the compiler:

          log.log(clutchlog::level::xdebug, "hello world", CLUTCHLOC);
          +
          #define CLUTCHLOC
          Handy shortcuts to location.
          Definition: clutchlog.h:78
          +

          A similar dump method exists:

          log.dump(clutchlog::level::xdebug, cont.begin(), cont.end(), CLUTCHLOC, "dumped_{n}.dat", "\n");
          log.dump(clutchlog::level::xdebug, cont.begin(), cont.end(), "main.cpp", "main", 122, "dumped.dat", "\n\n");
          -

          You can access the identifier of log levels with clutchlog::level_of:

          log.threshold( log.level_of("XDebug") ); // You have to know the exact string.
          +

          You can access the identifier of log levels with clutchlog::level_of:

          log.threshold( log.level_of("XDebug") ); // You have to know the exact string.

          (De)clutch any function call

          -

          The CLUTHFUNC macro allows to wrap any function within the current logger.

          -

          For instance, this can be useful if you want to (de)clutch calls to asserts. To do that, just declare your own macro:

          #define ASSERT(...) { CLUTCHFUNC(error, assert, __VA_ARGS__) }
          -

          Thus, any call like ASSERT(x > 3); will be declutchable with the same configuration than a call to CLUTCHLOG.

          +

          The CLUTHFUNC macro allows to wrap any function within the current logger.

          +

          For instance, this can be useful if you want to (de)clutch calls to asserts. To do that, just declare your own macro:

          #define ASSERT(...) { CLUTCHFUNC(error, assert, __VA_ARGS__) }
          +

          Thus, any call like ASSERT(x > 3); will be declutchable with the same configuration than a call to CLUTCHLOG.

          (De)clutch any code section

          -

          The CLUTCHCODE macro allows to wrap any code within the current logger.

          -

          For instance:

          +

          The CLUTCHCODE macro allows to wrap any code within the current logger.

          +

          For instance:

          std::clog << "We are clutched!\n";
          );
          +
          #define CLUTCHCODE(LEVEL,...)
          Run any code if the scope matches.
          Definition: clutchlog.h:146

          Manually Increase Stack Depth

          -

          You may want to manually increase the stack depth for a given logging call, for instance to subdivise a single function in sections. To do so, you can use the CLUTCHLOGD macro, which take an additional argument, in the form of the number of additional (fake) stack depths you want:

          CLUTCHLOG( debug, "Call"); // Regular macro.
          -
          CLUTCHLOGD(debug, "Sub call", 1); // Adds an additional (fake) stack depth.
          -
          CLUTCHLOGD(debug, "Sub sub!", 2); // Adds two additional (fake) stack depths.
          -

          That way, the depth will be rendered to the actual depth, plus the additional depth delta. Note that the displayed function will stay the same. Any filtering on the stack depth will take into account the fake depth and not the real one.

          +

          You may want to manually increase the stack depth for a given logging call, for instance to subdivise a single function in sections. To do so, you can use the CLUTCHLOGD macro, which take an additional argument, in the form of the number of additional (fake) stack depths you want:

          CLUTCHLOG( debug, "Call"); // Regular macro.
          +
          CLUTCHLOGD(debug, "Sub call", 1); // Adds an additional (fake) stack depth.
          +
          CLUTCHLOGD(debug, "Sub sub!", 2); // Adds two additional (fake) stack depths.
          +
          #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
          Log a message at the given level and with a given depth delta.
          Definition: clutchlog.h:82
          +

          That way, the depth will be rendered to the actual depth, plus the additional depth delta. Note that the displayed function will stay the same. Any filtering on the stack depth will take into account the fake depth and not the real one.

          Examples

          -

          Here what you would do to setup clutchlog with the default configuration:

          auto& log = clutchlog::logger();
          +

          Here what you would do to setup clutchlog with the default configuration:

          auto& log = clutchlog::logger();
          log.out(std::clog);
          // Location filtering.
          log.depth(std::numeric_limits<size_t>::max());
          @@ -439,13 +450,13 @@ Examples
          log.func(".*");
          log.line(".*");
          // Colors of the 3 firsts levels.
          -
          log.style(clutchlog::level::critical, clutchlog::fmt(
          +
          log.style(clutchlog::level::critical, clutchlog::fmt(
          clutchlog::fmt::fg::red,
          clutchlog::fmt::typo::underline);
          -
          log.style(clutchlog::level::error, clutchlog::fmt(
          +
          log.style(clutchlog::level::error, clutchlog::fmt(
          clutchlog::fmt::fg::red,
          clutchlog::fmt::typo::bold);
          -
          log.style(clutchlog::level::warning, clutchlog::fmt(
          +
          log.style(clutchlog::level::warning, clutchlog::fmt(
          clutchlog::fmt::fg::magenta,
          clutchlog::fmt::typo::bold);
          // Assuming you are on a POSIX system.
          @@ -455,27 +466,29 @@ Examples
          log.hfill_char('.');
          log.hfill_max(300);
          log.hfill_style(clutchlog::fmt::fg::none);
          -

          And here are all the functions you may call to log something:

          // Basic message.
          -
          CLUTCHLOG(debug, "x = " << x);
          +
          enum clutchlog::fmt::typo style
          Typographic style.
          +

          And here are all the functions you may call to log something:

          // Basic message.
          +
          CLUTCHLOG(debug, "x = " << x);
          // Any code section.
          -
          CLUTCHCODE(xdebug,
          +
          CLUTCHCODE(xdebug,
          if(x < 0) std::cerr << "WTF?" << std::endl;
          );
          // Container to a file.
          -
          CLUTCHDUMP(note, my_vector, "my_vector.dat");
          +
          CLUTCHDUMP(note, my_vector, "my_vector.dat");
          // Container to a numbered file.
          -
          CLUTCHDUMP(note, my_list, "my_list_{n}.dat");
          +
          CLUTCHDUMP(note, my_list, "my_list_{n}.dat");
          // Function call.
          -
          CLUTCHFUNC(warning, my_check, x, y); // Calls: my_check(x,y);
          +
          CLUTCHFUNC(warning, my_check, x, y); // Calls: my_check(x,y);
          // Declutchable asserts.
          #define ASSERT(...) { CLUTCHFUNC(critical, assert, __VA_ARGS__) }
          -
          ASSERT(x>0);
          -

          Here what you would do to setup clutchlog with the default configuration using 16M-colors mode:

          auto& log = clutchlog::logger();
          +
          ASSERT(x>0);
          +
          #define CLUTCHFUNC(LEVEL, FUNC,...)
          Call any function if the scope matches.
          Definition: clutchlog.h:125
          +

          Here what you would do to setup clutchlog with the default configuration using 16M-colors mode:

          auto& log = clutchlog::logger();
          log.out(std::clog);
          // Location filtering.
          log.depth(std::numeric_limits<size_t>::max());
          @@ -484,13 +497,13 @@ Examples
          log.func(".*");
          log.line(".*");
          // Colors of the 3 firsts levels.
          -
          log.style(clutchlog::level::critical, clutchlog::fmt(
          +
          log.style(clutchlog::level::critical, clutchlog::fmt(
          "#ff0000",
          clutchlog::fmt::typo::underline);
          -
          log.style(clutchlog::level::error, clutchlog::fmt(
          +
          log.style(clutchlog::level::error, clutchlog::fmt(
          "#ff0000",
          clutchlog::fmt::typo::bold);
          -
          log.style(clutchlog::level::warning, clutchlog::fmt(
          +
          log.style(clutchlog::level::warning, clutchlog::fmt(
          "#ff00ff",
          clutchlog::fmt::typo::bold);
          // Assuming you are on a POSIX system.
          @@ -504,32 +517,32 @@ Examples Limitations

          System-dependent stack depth

          -

          Because access to the call stack depth and program name are system-dependent, the features relying on the depth of the call stack and the display of the program name are only available for operating systems having the following headers: execinfo.h, stdlib.h and libgen.h (so far, tested with Linux).

          -

          Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSINFO to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

          #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
          +

          Because access to the call stack depth and program name are system-dependent, the features relying on the depth of the call stack and the display of the program name are only available for operating systems having the following headers: execinfo.h, stdlib.h and libgen.h (so far, tested with Linux).

          +

          Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSINFO to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

          #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
          log.depth( x );
          #endif

          System-dependent horizontal fill

          -

          Because access to the current terminal width is system-dependent, the {hfill} format tag feature is only available for operating systems having the following headers: sys/ioctl.h, stdio.h and unistd.h (so far, tested with Linux).

          -

          Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSIOCTL to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

          #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
          +

          Because access to the current terminal width is system-dependent, the {hfill} format tag feature is only available for operating systems having the following headers: sys/ioctl.h, stdio.h and unistd.h (so far, tested with Linux).

          +

          Clutchlog sets the CLUTCHLOG_HAVE_UNIX_SYSIOCTL to 1 if the headers are available, and to 0 if they are not. You can make portable code using something like:

          #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1
          log.hfill_mark( '_' );
          #endif
          -

          If you use unicode characters in your template, the horizontal width will not be computed properly, resulting in incorrectly right-aligned lines. Solving this would require the use of third-party libraries, making portability more difficult.

          +

          If you use unicode characters in your template, the horizontal width will not be computed properly, resulting in incorrectly right-aligned lines. Solving this would require the use of third-party libraries, making portability more difficult.

          Dependencies

          -

          Some colors/styles may not be supported by some exotic terminal emulators.

          -

          Clutchlog needs C++-17 with the filesystem feature. You may need to indicate -std=c++17 -lstdc++fs to some compilers.

          +

          Some colors/styles may not be supported by some exotic terminal emulators.

          +

          Clutchlog needs C++-17 with the filesystem feature. You may need to indicate -std=c++17 -lstdc++fs to some compilers.

          Variable names within the CLUTCHLOG macro

          -

          Calling the CLUTCHLOG macro with a message using a variable named clutchlog__msg will end in an error.

          +

          Calling the CLUTCHLOG macro with a message using a variable named clutchlog__msg will end in an error.

          Features

          -

          What Clutchlog do not provide at the moment (but may in a near future):

          +

          What Clutchlog do not provide at the moment (but may in a near future):

          • Super fast log writing.
          • Thread safety.
          -

          What Clutchlog will most certainly never provide:

          +

          What Clutchlog will most certainly never provide:

          • Round-robin log managers.
          • Duplicated messages management.
          • @@ -540,35 +553,28 @@ Features

          Build and tests

          -

          To use clutchlog, just include its header in your code and either ensure that the NDEBUG preprocessor variable is not set, either define the WITH_CLUTCHLOG preprocessor variable.

          -

          If you're using CMake (or another modern build system), it will unset NDEBUG —and thus enable clutchlog— only for the "Debug" build type, which is usually what you want if you use clutchlog, anyway.

          -

          To build and run the tests, just use a classical CMake workflow:

          mkdir build
          +

          To use clutchlog, just include its header in your code and either ensure that the NDEBUG preprocessor variable is not set, either define the WITH_CLUTCHLOG preprocessor variable.

          +

          If you're using CMake (or another modern build system), it will unset NDEBUG —and thus enable clutchlog— only for the "Debug" build type, which is usually what you want if you use clutchlog, anyway.

          +

          To build and run the tests, just use a classical CMake workflow:

          mkdir build
          cd build
          cmake -DCMAKE_BUILD_TYPE=Debug -DWITH_CLUTCHLOG=ON ..
          make
          ctest
          -

          There's a script that tests all the build types combinations: ./build_all.sh.

          +

          There's a script that tests all the build types combinations: ./build_all.sh.

          +

          +Usage as a Git submodule

          +

          If you are using Git and CMake, it is easy to include Clutchlog as a dependency.

          +

          First, add Clutchlog as a submodule of your repository:

          git submodule add git@github.com:nojhan/clutchlog.git external/
          +
          git commit -m "Add clutchlog as a submodule dependency"
          +

          Then, in your CMakeLists.txt file, add:

          include_directories(external/clutchlog)
          +

          And that's it.

          -
          #define CLUTCHLOG_DEFAULT_DEPTH_MARK
          Compile-time default mark for stack depth.
          Definition: clutchlog.h:256
          -
          enum clutchlog::fmt::typo style
          Typographic style.
          -
          #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
          Log a message at the given level and with a given depth delta.
          Definition: clutchlog.h:81
          -
          #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
          Dump the given container.
          Definition: clutchlog.h:107
          -
          static clutchlog & logger()
          Get the logger instance.
          Definition: clutchlog.h:306
          -
          Color and style formatter for ANSI terminal escape sequences.
          Definition: clutchlog.h:379
          -
          #define CLUTCHLOC
          Handy shortcuts to location.
          Definition: clutchlog.h:77
          -
          #define CLUTCHLOG_DEFAULT_HFILL_MARK
          Character used as a filling for right-align the right part of messages with "{hfill}".
          Definition: clutchlog.h:270
          -
          #define CLUTCHLOG(LEVEL, WHAT)
          Log a message at the given level.
          Definition: clutchlog.h:98
          -
          #define CLUTCHFUNC(LEVEL, FUNC,...)
          Call any function if the scope matches.
          Definition: clutchlog.h:124
          -
          #define CLUTCHLOG_STRIP_CALLS
          Compile-time number of call stack levels to remove from depth display by default.
          Definition: clutchlog.h:263
          -
          #define CLUTCHCODE(LEVEL,...)
          Run any code if the scope matches.
          Definition: clutchlog.h:145
          diff --git a/docs/inherits.html b/docs/inherits.html index 7d1cca4..edf74a2 100644 --- a/docs/inherits.html +++ b/docs/inherits.html @@ -2,8 +2,8 @@ - - + + clutchlog: Class Hierarchy @@ -24,11 +24,10 @@
          - + - @@ -36,21 +35,22 @@
          -
          clutchlog -  0.16 +
          +
          clutchlog 0.17
          - + +/* @license-end */ +
          @@ -64,7 +64,7 @@ $(function() {
          @@ -84,8 +84,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable();
        -
        -
        Class Hierarchy
        +
        Class Hierarchy
        @@ -101,9 +100,7 @@ $(document).ready(function(){initNavTree('hierarchy.html',''); initResizable(); diff --git a/docs/jquery.js b/docs/jquery.js index 103c32d..c9ed3d9 100644 --- a/docs/jquery.js +++ b/docs/jquery.js @@ -1,5 +1,5 @@ -/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
        "],col:[2,"","
        "],tr:[2,"","
        "],td:[3,"","
        "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
        ",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
        "],col:[2,"","
        "],tr:[2,"","
        "],td:[3,"","
        "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
        ",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0'+ + var url; + var link; + link = data.children[i].url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + } else { + url = relPath+link; + } + result+='
      • '+ data.children[i].text+''+ makeTree(data.children[i],relPath)+'
      • '; } @@ -35,16 +44,92 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { } return result; } - - $('#main-nav').append(makeTree(menudata,relPath)); - $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + var searchBox; if (searchEnabled) { if (serverSide) { - $('#main-menu').append('
      • '); + searchBox='
        '+ + '
        '+ + '
        '+ + ''+ + '
        '+ + '
        '+ + '
        '+ + '
        '; } else { - $('#main-menu').append('
      • '); + searchBox='
        '+ + ''+ + ''+ + ''+ + ''+ + ''+ + '' + '' + '
        '; } } + + $('#main-nav').before('
        '+ + ''+ + ''+ + '
        '); + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchBox) { + $('#main-menu').append('
      • '); + } + var $mainMenuState = $('#main-menu-state'); + var prevWidth = 0; + if ($mainMenuState.length) { + function initResizableIfExists() { + if (typeof initResizable==='function') initResizable(); + } + // animate mobile menu + $mainMenuState.change(function(e) { + var $menu = $('#main-menu'); + var options = { duration: 250, step: initResizableIfExists }; + if (this.checked) { + options['complete'] = function() { $menu.css('display', 'block') }; + $menu.hide().slideDown(options); + } else { + options['complete'] = function() { $menu.css('display', 'none') }; + $menu.show().slideUp(options); + } + }); + // set default menu visibility + function resetState() { + var $menu = $('#main-menu'); + var $mainMenuState = $('#main-menu-state'); + var newWidth = $(window).outerWidth(); + if (newWidth!=prevWidth) { + if ($(window).outerWidth()<768) { + $mainMenuState.prop('checked',false); $menu.hide(); + $('#searchBoxPos1').html(searchBox); + $('#searchBoxPos2').hide(); + } else { + $menu.show(); + $('#searchBoxPos1').empty(); + $('#searchBoxPos2').html(searchBox); + $('#searchBoxPos2').show(); + } + prevWidth = newWidth; + } + } + $(window).ready(function() { resetState(); initResizableIfExists(); }); + $(window).resize(resetState); + } $('#main-menu').smartmenus(); } /* @license-end */ diff --git a/docs/menudata.js b/docs/menudata.js index 5970b76..31d3754 100644 --- a/docs/menudata.js +++ b/docs/menudata.js @@ -1,24 +1,26 @@ /* -@licstart The following is the entire license notice for the -JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. -Copyright (C) 1997-2019 by Dimitri van Heesch + The MIT License (MIT) -This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as published by -the Free Software Foundation + Copyright (C) 1997-2020 by Dimitri van Heesch -This program 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 -GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: -You should have received a copy of the GNU General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. -@licend The above is the entire license notice -for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ var menudata={children:[ {text:"Main Page",url:"index.html"}, diff --git a/docs/modules.html b/docs/modules.html index 2174db0..2b45905 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -2,8 +2,8 @@ - - + + clutchlog: Modules @@ -24,11 +24,10 @@
        - + - @@ -36,21 +35,22 @@
        -
        clutchlog -  0.16 +
        +
        clutchlog 0.17
        - + +/* @license-end */ +
        @@ -64,7 +64,7 @@ $(function() {
        @@ -84,8 +84,7 @@ $(document).ready(function(){initNavTree('modules.html',''); initResizable(); })
        -
        -
        Modules
        +
        Modules
        Here is a list of all modules:
        @@ -103,9 +102,7 @@ $(document).ready(function(){initNavTree('modules.html',''); initResizable(); }) diff --git a/docs/navtree.css b/docs/navtree.css index 33341a6..d8a311a 100644 --- a/docs/navtree.css +++ b/docs/navtree.css @@ -87,6 +87,7 @@ position: absolute; left: 0px; width: 250px; + overflow : hidden; } .ui-resizable .ui-resizable-handle { diff --git a/docs/navtree.js b/docs/navtree.js index edc31ef..2798368 100644 --- a/docs/navtree.js +++ b/docs/navtree.js @@ -1,24 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2019 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public License as - published by the Free Software Foundation. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program 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 - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ var navTreeSubIndices = new Array(); var arrowDown = '▼'; @@ -323,11 +325,14 @@ function selectAndHighlight(hash,n) $(n.itemDiv).addClass('selected'); $(n.itemDiv).attr('id','selected'); } - if ($('#nav-tree-contents .item:first').hasClass('selected')) { - $('#nav-sync').css('top','30px'); - } else { - $('#nav-sync').css('top','5px'); + var topOffset=5; + if (typeof page_layout!=='undefined' && page_layout==1) { + topOffset+=$('#top').outerHeight(); } + if ($('#nav-tree-contents .item:first').hasClass('selected')) { + topOffset+=25; + } + $('#nav-sync').css('top',topOffset+'px'); showRoot(); } diff --git a/docs/navtreedata.js b/docs/navtreedata.js index b21b8d8..9313055 100644 --- a/docs/navtreedata.js +++ b/docs/navtreedata.js @@ -1,24 +1,26 @@ /* -@licstart The following is the entire license notice for the -JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. -Copyright (C) 1997-2019 by Dimitri van Heesch + The MIT License (MIT) -This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as published by -the Free Software Foundation + Copyright (C) 1997-2020 by Dimitri van Heesch -This program 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 -GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: -You should have received a copy of the GNU General Public License along -with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. -@licend The above is the entire license notice -for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ var NAVTREE = [ @@ -56,7 +58,8 @@ var NAVTREE = ] ], [ "Examples", "index.html#autotoc_md25", null ], [ "Limitations", "index.html#autotoc_md26", null ], - [ "Build and tests", "index.html#autotoc_md32", null ] + [ "Build and tests", "index.html#autotoc_md32", null ], + [ "Usage as a Git submodule", "index.html#autotoc_md33", null ] ] ], [ "Modules", "modules.html", "modules" ], [ "Classes", "annotated.html", [ @@ -83,8 +86,7 @@ var NAVTREE = var NAVTREEINDEX = [ -"annotated.html", -"structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d" +"annotated.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/navtreeindex0.js b/docs/navtreeindex0.js index 8df93de..eda67d6 100644 --- a/docs/navtreeindex0.js +++ b/docs/navtreeindex0.js @@ -2,120 +2,101 @@ var NAVTREEINDEX0 = { "annotated.html":[2,0], "classclutchlog.html":[1,2,0], -"classclutchlog.html#a03b145e36f15435a640bb5a885d9f642":[1,2,0,7], -"classclutchlog.html#a0431616914dbbecb908a794f5b46dada":[1,2,0,60], -"classclutchlog.html#a08310b92e86687349e70f56f9ac1d656":[1,2,0,18], -"classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae":[1,2,0,49], -"classclutchlog.html#a0906d74275cedcd403da94879764815e":[1,2,0,6], -"classclutchlog.html#a095e1545a2085ac623e4af19364fea7f":[1,2,0,59], -"classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc":[1,2,0,38], -"classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c":[1,2,0,24], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928":[1,2,0,61], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a023c3e8a55ddfd140d3e3268dd6221e9":[1,2,0,61,1], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a6efd7b28f876c0473c6dfeae82fc8e05":[1,2,0,61,3], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a911f5ef324f37061f68a239577e0d0bd":[1,2,0,61,6], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aa1ea607f2bfe5db06f1cf2bd991f7dc1":[1,2,0,61,5], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aab4ce1a501f9cbe27666659d3b19534c":[1,2,0,61,2], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928abba74b810831c7753777e6dcc0c0f4e2":[1,2,0,61,7], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af332f31a368c931f79b9b64d55fc7701":[1,2,0,61,0], -"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af89a12aab2a73ea31e19b04ecadbdc0d":[1,2,0,61,4], -"classclutchlog.html#a130c4f12eacbd2028102838fe16b734e":[1,2,0,56], -"classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a":[1,2,0,36], -"classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167":[1,2,0,53], -"classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468":[1,2,0,42], -"classclutchlog.html#a2144abe4ec6f630126b6490908b5f924":[1,2,0,12], -"classclutchlog.html#a229fd61519f1245282440120f2d45fb5":[1,2,0,41], -"classclutchlog.html#a2a334e009533744b52f01ef240a59e9d":[1,2,0,58], -"classclutchlog.html#a356df86455409193792b6ed550dfd09e":[1,2,0,46], -"classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4":[1,2,0,19], -"classclutchlog.html#a41757198b29862832a14472a9e5e24c6":[1,2,0,57], -"classclutchlog.html#a4831f44fd5ade102e57320632095934d":[1,2,0,30], -"classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96":[1,2,0,32], -"classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7":[1,2,0,45], -"classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5":[1,2,0,52], -"classclutchlog.html#a656c277e074b64728cca871f2b484d1c":[1,2,0,10], -"classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3":[1,2,0,27], -"classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266":[1,2,0,15], -"classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6":[1,2,0,43], -"classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9":[1,2,0,20], -"classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e":[1,2,0,51], -"classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d":[1,2,0,14], -"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e":[1,2,0,62], -"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea04548b133168127416623d51dd3b9338":[1,2,0,62,4], -"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea19ebb39c0f117afbe6658bbc9bea68a4":[1,2,0,62,0], -"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea35cf5f272267d9656cfcfe52243f4841":[1,2,0,62,2], -"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea5b96778dd84a50c1b288b31a5200df4d":[1,2,0,62,5], -"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea9534ecbf6a632833ca32ea5bb33f7eea":[1,2,0,62,3], -"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ead79ddc78294d362c22ba917cba2cd3ef":[1,2,0,62,1], -"classclutchlog.html#a82b9375728af2d962831a743d95f4ae7":[1,2,0,31], -"classclutchlog.html#a972f895c70edc335f3018a2c8971d59e":[1,2,0,33], -"classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9":[1,2,0,26], -"classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5":[1,2,0,13], -"classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f":[1,2,0,47], -"classclutchlog.html#ab45287cc9c14217904a13aff49573732":[1,2,0,21], -"classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb":[1,2,0,37], -"classclutchlog.html#ab805ac5c33885459f9f752518a4aa735":[1,2,0,50], -"classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888":[1,2,0,48], -"classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761":[1,2,0,35], -"classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591":[1,2,0,28], -"classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1":[1,2,0,44], -"classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416":[1,2,0,17], -"classclutchlog.html#ace879554298e6e6e36dafef330c27be8":[1,2,0,39], -"classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd":[1,2,0,23], -"classclutchlog.html#acfaceb77da01503b432644a3efaee4fa":[1,2,0,8], -"classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6":[1,2,0,29], -"classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447":[1,2,0,25], -"classclutchlog.html#aded03528f34d9000f618419c482c5042":[1,2,0,55], -"classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf":[1,2,0,16], -"classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2":[1,2,0,34], -"classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993":[1,2,0,54], -"classclutchlog.html#aef653a9744a72a889ca8163269bb781e":[1,2,0,9], -"classclutchlog.html#af898bffe23b125245e338d7495c76d45":[1,2,0,40], -"classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80":[1,2,0,11], -"classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a":[1,2,0,22], +"classclutchlog.html#a0431616914dbbecb908a794f5b46dada":[1,2,0,52], +"classclutchlog.html#a08310b92e86687349e70f56f9ac1d656":[1,2,0,10], +"classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae":[1,2,0,41], +"classclutchlog.html#a095e1545a2085ac623e4af19364fea7f":[1,2,0,51], +"classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc":[1,2,0,30], +"classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c":[1,2,0,16], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928":[1,2,0,53], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a023c3e8a55ddfd140d3e3268dd6221e9":[1,2,0,53,1], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a6efd7b28f876c0473c6dfeae82fc8e05":[1,2,0,53,3], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928a911f5ef324f37061f68a239577e0d0bd":[1,2,0,53,6], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aa1ea607f2bfe5db06f1cf2bd991f7dc1":[1,2,0,53,5], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928aab4ce1a501f9cbe27666659d3b19534c":[1,2,0,53,2], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928abba74b810831c7753777e6dcc0c0f4e2":[1,2,0,53,7], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af332f31a368c931f79b9b64d55fc7701":[1,2,0,53,0], +"classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928af89a12aab2a73ea31e19b04ecadbdc0d":[1,2,0,53,4], +"classclutchlog.html#a130c4f12eacbd2028102838fe16b734e":[1,2,0,48], +"classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a":[1,2,0,28], +"classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167":[1,2,0,45], +"classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468":[1,2,0,34], +"classclutchlog.html#a2144abe4ec6f630126b6490908b5f924":[1,2,0,4], +"classclutchlog.html#a229fd61519f1245282440120f2d45fb5":[1,2,0,33], +"classclutchlog.html#a2a334e009533744b52f01ef240a59e9d":[1,2,0,50], +"classclutchlog.html#a356df86455409193792b6ed550dfd09e":[1,2,0,38], +"classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4":[1,2,0,11], +"classclutchlog.html#a41757198b29862832a14472a9e5e24c6":[1,2,0,49], +"classclutchlog.html#a4831f44fd5ade102e57320632095934d":[1,2,0,22], +"classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96":[1,2,0,24], +"classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7":[1,2,0,37], +"classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5":[1,2,0,44], +"classclutchlog.html#a656c277e074b64728cca871f2b484d1c":[1,2,0,2], +"classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3":[1,2,0,19], +"classclutchlog.html#a6e2a5e98fa9f722d90ba6515895543ac":[1,2,0,1], +"classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6":[1,2,0,35], +"classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9":[1,2,0,12], +"classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e":[1,2,0,43], +"classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d":[1,2,0,6], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e":[1,2,0,54], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea04548b133168127416623d51dd3b9338":[1,2,0,54,4], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea19ebb39c0f117afbe6658bbc9bea68a4":[1,2,0,54,0], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea35cf5f272267d9656cfcfe52243f4841":[1,2,0,54,2], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea5b96778dd84a50c1b288b31a5200df4d":[1,2,0,54,5], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ea9534ecbf6a632833ca32ea5bb33f7eea":[1,2,0,54,3], +"classclutchlog.html#a822062ffa857bd16ff488f9c749ff20ead79ddc78294d362c22ba917cba2cd3ef":[1,2,0,54,1], +"classclutchlog.html#a82b9375728af2d962831a743d95f4ae7":[1,2,0,23], +"classclutchlog.html#a8d206443dea964f77965450a83693d98":[1,2,0,14], +"classclutchlog.html#a972f895c70edc335f3018a2c8971d59e":[1,2,0,25], +"classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9":[1,2,0,18], +"classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5":[1,2,0,5], +"classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f":[1,2,0,39], +"classclutchlog.html#ab45287cc9c14217904a13aff49573732":[1,2,0,13], +"classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb":[1,2,0,29], +"classclutchlog.html#ab7773f031a00a05b8c83c1936406cb98":[1,2,0,7], +"classclutchlog.html#ab805ac5c33885459f9f752518a4aa735":[1,2,0,42], +"classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888":[1,2,0,40], +"classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761":[1,2,0,27], +"classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591":[1,2,0,20], +"classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1":[1,2,0,36], +"classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416":[1,2,0,9], +"classclutchlog.html#ace879554298e6e6e36dafef330c27be8":[1,2,0,31], +"classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd":[1,2,0,15], +"classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6":[1,2,0,21], +"classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447":[1,2,0,17], +"classclutchlog.html#aded03528f34d9000f618419c482c5042":[1,2,0,47], +"classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf":[1,2,0,8], +"classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2":[1,2,0,26], +"classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993":[1,2,0,46], +"classclutchlog.html#af898bffe23b125245e338d7495c76d45":[1,2,0,32], +"classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80":[1,2,0,3], "classclutchlog_1_1fmt.html":[1,3,0], -"classclutchlog_1_1fmt.html#a00feba2b1539529df70e39d615a05941":[1,3,0,10], -"classclutchlog_1_1fmt.html#a04f3ba5f6fe81955dca4492a6d259f1c":[1,3,0,7], -"classclutchlog_1_1fmt.html#a0923d7d400f6753d4dae124b71eb5023":[1,3,0,15], -"classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205":[1,3,0,25], -"classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0":[1,3,0,18], -"classclutchlog_1_1fmt.html#a13453c0b5dbc19d9b510dcdc0352b443":[1,3,0,3], -"classclutchlog_1_1fmt.html#a194201eb8a400ef13df3e833b8788cdc":[1,3,0,9], -"classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b":[1,3,0,26], -"classclutchlog_1_1fmt.html#a2df8f77f58dc9272c94982c4d2275581":[1,3,0,12], -"classclutchlog_1_1fmt.html#a357c93593867f67d9fef562ca07c7dcc":[1,3,0,11], +"classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205":[1,3,0,7], +"classclutchlog_1_1fmt.html#a24568f7a157d50e3075a74a619719c84":[1,3,0,6], +"classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b":[1,3,0,8], "classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959":[1,3,0,0], -"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502":[1,3,0,33], -"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa":[1,3,0,33,2], -"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e":[1,3,0,33,0], -"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749":[1,3,0,33,1], -"classclutchlog_1_1fmt.html#a506718883842dbce3659f42cdf79e52c":[1,3,0,16], -"classclutchlog_1_1fmt.html#a63b29eb5862a30a194b0256f2ee554a6":[1,3,0,13], -"classclutchlog_1_1fmt.html#a65856874070ec0865b3a5b9aeb0e4f3d":[1,3,0,4], -"classclutchlog_1_1fmt.html#a6cc6126d113fc0647ed3acbf29cdc425":[1,3,0,1], -"classclutchlog_1_1fmt.html#a6d1cc4abe822a569a2624b0829de5dd0":[1,3,0,17], -"classclutchlog_1_1fmt.html#a822ded10ae1b0c82f7330481aa4bb64f":[1,3,0,21], -"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89":[1,3,0,34], -"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a334c4a4c42fdb79d7ebc3e73b517e6f8":[1,3,0,34,4], -"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a69dcab4a73aeec2113f69b61e6263da8":[1,3,0,34,1], -"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a6dc7b4483f8c2c701a48e42db552806d":[1,3,0,34,2], -"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a86266ee937d97f812a8e57d22b62ee29":[1,3,0,34,0], -"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89aa91c78e040f7b9d158f381e197f8beb4":[1,3,0,34,3], -"classclutchlog_1_1fmt.html#a9458703ab8a3c9fbc6b801011b43f16d":[1,3,0,14], -"classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da":[1,3,0,24], -"classclutchlog_1_1fmt.html#a99b3a05ddf6fa341cee6cb1e5dffc159":[1,3,0,5], -"classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b":[1,3,0,20], -"classclutchlog_1_1fmt.html#ac49c883e3dd17832749cc092b74a9f56":[1,3,0,8], -"classclutchlog_1_1fmt.html#ac69e6d3b7ddaec908c429ac61f354267":[1,3,0,2], -"classclutchlog_1_1fmt.html#aeea73b0239bf73ebc8ee84c1e6d278e2":[1,3,0,6], -"classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c":[1,3,0,19], +"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502":[1,3,0,15], +"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa":[1,3,0,15,2], +"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e":[1,3,0,15,0], +"classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749":[1,3,0,15,1], +"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89":[1,3,0,16], +"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a334c4a4c42fdb79d7ebc3e73b517e6f8":[1,3,0,16,4], +"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a69dcab4a73aeec2113f69b61e6263da8":[1,3,0,16,1], +"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a6dc7b4483f8c2c701a48e42db552806d":[1,3,0,16,2], +"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89a86266ee937d97f812a8e57d22b62ee29":[1,3,0,16,0], +"classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89aa91c78e040f7b9d158f381e197f8beb4":[1,3,0,16,3], +"classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b":[1,3,0,3], +"classclutchlog_1_1fmt.html#ad754c64eb6fd8730a616d113cb9f9129":[1,3,0,1], +"classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c":[1,3,0,2], "classes.html":[2,1], -"clutchlog_8h.html":[3,0,0], -"clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16":[3,0,0,1], -"clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4":[3,0,0,4], -"clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb":[3,0,0,2], -"clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817":[3,0,0,3], -"clutchlog_8h_source.html":[3,0,0], +"clutchlog_8h.html":[3,0,0,0], +"clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16":[3,0,0,0,1], +"clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4":[3,0,0,0,4], +"clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb":[3,0,0,0,2], +"clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817":[3,0,0,0,3], +"clutchlog_8h_source.html":[3,0,0,0], +"dir_59425e443f801f1f2fd8bbe4959a3ccf.html":[3,0,1], +"dir_c318bd5cf14aaa5601e6029e0b5b4048.html":[3,0,0], "files.html":[3,0], "functions.html":[2,3,0], "functions_enum.html":[2,3,3], @@ -125,94 +106,37 @@ var NAVTREEINDEX0 = "globals.html":[3,1,0], "globals_defs.html":[3,1,1], "group___default_config.html":[1,0], -"group___default_config.html#ga27b613c6727857a7cbcd0165d862034e":[3,0,0,13], "group___default_config.html#ga27b613c6727857a7cbcd0165d862034e":[1,0,2], -"group___default_config.html#ga45c4c964fad4ad1641d5c9c28c4645b9":[3,0,0,15], "group___default_config.html#ga45c4c964fad4ad1641d5c9c28c4645b9":[1,0,4], "group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805":[1,0,6], -"group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805":[3,0,0,17], -"group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa":[3,0,0,12], "group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa":[1,0,1], -"group___default_config.html#ga54d29e956575e1c731eab5406135c5df":[3,0,0,14], "group___default_config.html#ga54d29e956575e1c731eab5406135c5df":[1,0,3], -"group___default_config.html#ga8564be479b948ee3052b61783c66d415":[3,0,0,5], "group___default_config.html#ga8564be479b948ee3052b61783c66d415":[1,0,0], "group___default_config.html#ga98f30d814d4913a8a7c93a8793f49adf":[1,0,5], -"group___default_config.html#ga98f30d814d4913a8a7c93a8793f49adf":[3,0,0,16], "group___formating.html":[1,3], "group___main.html":[1,2], "group___use_macros.html":[1,1], "group___use_macros.html#ga369d365b7c25ec270596c3ca6839cf2c":[1,1,1], -"group___use_macros.html#ga369d365b7c25ec270596c3ca6839cf2c":[3,0,0,7], -"group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2":[3,0,0,9], "group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2":[1,1,3], "group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d":[1,1,2], -"group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d":[3,0,0,8], -"group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae":[3,0,0,10], "group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae":[1,1,4], "group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73":[1,1,5], -"group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73":[3,0,0,11], "group___use_macros.html#gae8911119d726a43b77f5781cb5a72813":[1,1,0], -"group___use_macros.html#gae8911119d726a43b77f5781cb5a72813":[3,0,0,6], "group__colors16.html":[1,4], -"group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e":[1,3,0,36], "group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e":[1,4,1], -"group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33":[1,3,0,23], -"group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33":[1,4,5], -"group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0":[1,3,0,35], "group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0":[1,4,0], -"group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7":[1,3,0,22], -"group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7":[1,4,4], -"group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401":[1,3,0,27], "group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401":[1,4,2], "group__colors16.html#ga86696b20e5b31c96ba592926efb324f3":[1,4,3], -"group__colors16.html#ga86696b20e5b31c96ba592926efb324f3":[1,3,0,28], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea1ffd9e753c8054cc61456ac7fac1ac89":[1,3,0,36,0], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea334c4a4c42fdb79d7ebc3e73b517e6f8":[1,3,0,36,16], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea37553b57ad1d7f61b0c51f5a535f72bf":[1,3,0,36,13], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea48d6215903dff56238e52e8891380c8f":[1,3,0,36,4], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea4c2a4a7078da0ac6733464eacfd00f86":[1,3,0,36,5], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea6411532ba4971f378391776a9db629d3":[1,3,0,36,6], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea74474ae20bf3ef3bce6fd679194ce383":[1,3,0,36,8], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea75dd76d162b9554ec8b63736bc22d93e":[1,3,0,36,11], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea8b84c6e788e91a3a45b9dabedb160590":[1,3,0,36,9], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ea9f27410725ab8cc8854a2769c7a516b8":[1,3,0,36,2], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1eabd5b4652dffd84bab66529361d0c4974":[1,3,0,36,10], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1eabda9643ac6601722a28f238714274da4":[1,3,0,36,1], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1eac5b47880b4b2ec37179078d63a85def3":[1,3,0,36,12], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1eacc69f9955c2bf916bb9a83f38141432f":[1,3,0,36,14], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ead487dd0b55dfcacdd920ccbdaeafa351":[1,3,0,36,3], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1ead508fe45cecaf653904a0e774084bb5c":[1,3,0,36,7], -"group__colors16.html#gga1cf3e27e4041250ffea0a6d58010da1eada7527acf78cb4e7b582e8163a1f642a":[1,3,0,36,15], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a1ffd9e753c8054cc61456ac7fac1ac89":[1,3,0,35,0], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a334c4a4c42fdb79d7ebc3e73b517e6f8":[1,3,0,35,16], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a37553b57ad1d7f61b0c51f5a535f72bf":[1,3,0,35,13], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a48d6215903dff56238e52e8891380c8f":[1,3,0,35,4], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a4c2a4a7078da0ac6733464eacfd00f86":[1,3,0,35,5], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a6411532ba4971f378391776a9db629d3":[1,3,0,35,6], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a74474ae20bf3ef3bce6fd679194ce383":[1,3,0,35,8], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a75dd76d162b9554ec8b63736bc22d93e":[1,3,0,35,11], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a8b84c6e788e91a3a45b9dabedb160590":[1,3,0,35,9], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0a9f27410725ab8cc8854a2769c7a516b8":[1,3,0,35,2], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0abd5b4652dffd84bab66529361d0c4974":[1,3,0,35,10], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0abda9643ac6601722a28f238714274da4":[1,3,0,35,1], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0ac5b47880b4b2ec37179078d63a85def3":[1,3,0,35,12], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0acc69f9955c2bf916bb9a83f38141432f":[1,3,0,35,14], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0ad487dd0b55dfcacdd920ccbdaeafa351":[1,3,0,35,3], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0ad508fe45cecaf653904a0e774084bb5c":[1,3,0,35,7], -"group__colors16.html#gga4662a3ec3577c6a575a2c734636ed8a0ada7527acf78cb4e7b582e8163a1f642a":[1,3,0,35,15], +"group__colors16.html#ga93d498671d8dc2e796978c4f4de51241":[1,4,5], +"group__colors16.html#gac00a2f504f5308207f7a94915fe9a9c5":[1,4,4], "group__colors256__16_m.html":[1,5], "group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0":[1,5,8], -"group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0":[1,3,0,30], -"group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de":[1,3,0,31], "group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de":[1,5,9], "group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0":[1,5,10], -"group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0":[1,3,0,32], "group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c":[1,5,7], -"group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c":[1,3,0,29], "hierarchy.html":[2,2], -"index.html":[], "index.html":[0], +"index.html":[], "index.html#autotoc_md0":[0,0], "index.html#autotoc_md1":[0,1], "index.html#autotoc_md10":[0,3,4,0], @@ -233,13 +157,9 @@ var NAVTREEINDEX0 = "index.html#autotoc_md24":[0,4,5], "index.html#autotoc_md25":[0,5], "index.html#autotoc_md26":[0,6], -"index.html#autotoc_md27":[0], -"index.html#autotoc_md28":[1], -"index.html#autotoc_md29":[2], "index.html#autotoc_md3":[0,3], -"index.html#autotoc_md30":[3], -"index.html#autotoc_md31":[4], "index.html#autotoc_md32":[0,7], +"index.html#autotoc_md33":[0,8], "index.html#autotoc_md4":[0,3,0], "index.html#autotoc_md5":[0,3,1], "index.html#autotoc_md6":[0,3,2], @@ -249,5 +169,61 @@ var NAVTREEINDEX0 = "modules.html":[1], "pages.html":[], "structclutchlog_1_1fmt_1_1bg__16_m.html":[1,5,6], -"structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0":[1,5,6,0] +"structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0":[1,5,6,0], +"structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d":[1,5,6,3], +"structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501":[1,5,6,1], +"structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97":[1,5,6,2], +"structclutchlog_1_1fmt_1_1bg__256.html":[1,5,3], +"structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd":[1,5,3,2], +"structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90":[1,5,3,0], +"structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad":[1,5,3,1], +"structclutchlog_1_1fmt_1_1color.html":[1,5,0], +"structclutchlog_1_1fmt_1_1color.html#a121619a01bf48e53b3478d23989c0c59":[1,5,0,2], +"structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae":[1,5,0,4], +"structclutchlog_1_1fmt_1_1color.html#a4860c13958d21118a564920fa78e6720":[1,5,0,3], +"structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac":[1,5,0,0], +"structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603":[1,5,0,1], +"structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0":[1,5,0,5], +"structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0a469bba0a564235dfceede42db14f17b0":[1,5,0,5,1], +"structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0ae64e4c4fee28f9ca7301e4c7ff598e67":[1,5,0,5,0], +"structclutchlog_1_1fmt_1_1color__16_m.html":[1,5,4], +"structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61":[1,5,4,5], +"structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3":[1,5,4,1], +"structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c":[1,5,4,2], +"structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d":[1,5,4,3], +"structclutchlog_1_1fmt_1_1color__16_m.html#ac6a4b8650ea7e9171fc76d6226015005":[1,5,4,4], +"structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282":[1,5,4,0], +"structclutchlog_1_1fmt_1_1color__256.html":[1,5,1], +"structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c":[1,5,1,0], +"structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726":[1,5,1,1], +"structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988":[1,5,1,4], +"structclutchlog_1_1fmt_1_1color__256.html#ad4e941accf566378e0007ec881096fb0":[1,5,1,3], +"structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111":[1,5,1,2], +"structclutchlog_1_1fmt_1_1fg__16_m.html":[1,5,5], +"structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5":[1,5,5,1], +"structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194":[1,5,5,0], +"structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8":[1,5,5,3], +"structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3":[1,5,5,2], +"structclutchlog_1_1fmt_1_1fg__256.html":[1,5,2], +"structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23":[1,5,2,2], +"structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59":[1,5,2,1], +"structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a":[1,5,2,0], +"structclutchlog_1_1scope__t.html":[1,2,0,0], +"structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572":[1,2,0,0,0], +"structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff":[1,2,0,0,3], +"structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744":[1,2,0,0,2], +"structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9":[1,2,0,0,1], +"t-assert_8cpp_source.html":[3,0,1,0], +"t-color16_m_8cpp_source.html":[3,0,1,2], +"t-color256_8cpp_source.html":[3,0,1,3], +"t-color_8cpp_source.html":[3,0,1,1], +"t-demo_8cpp_source.html":[3,0,1,4], +"t-depth-delta_8cpp_source.html":[3,0,1,5], +"t-dump_8cpp_source.html":[3,0,1,6], +"t-extra_8cpp_source.html":[3,0,1,7], +"t-filename_8cpp_source.html":[3,0,1,8], +"t-fmt-constructors_8cpp_source.html":[3,0,1,9], +"t-hash-color_8cpp_source.html":[3,0,1,10], +"t-log_8cpp_source.html":[3,0,1,11], +"t-one-line-if_8cpp_source.html":[3,0,1,12] }; diff --git a/docs/resize.js b/docs/resize.js index a0bb5f4..7fe30d1 100644 --- a/docs/resize.js +++ b/docs/resize.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program 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 - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function initResizable() { @@ -52,7 +53,7 @@ function initResizable() date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week expiration = date.toGMTString(); } - document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; + document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; SameSite=Lax; expires=" + expiration+"; path=/"; } function resizeWidth() @@ -74,10 +75,20 @@ function initResizable() { var headerHeight = header.outerHeight(); var footerHeight = footer.outerHeight(); - var windowHeight = $(window).height() - headerHeight - footerHeight; - content.css({height:windowHeight + "px"}); - navtree.css({height:windowHeight + "px"}); - sidenav.css({height:windowHeight + "px"}); + var windowHeight = $(window).height(); + var contentHeight,navtreeHeight,sideNavHeight; + if (typeof page_layout==='undefined' || page_layout==0) { /* DISABLE_INDEX=NO */ + contentHeight = windowHeight - headerHeight - footerHeight; + navtreeHeight = contentHeight; + sideNavHeight = contentHeight; + } else if (page_layout==1) { /* DISABLE_INDEX=YES */ + contentHeight = windowHeight - footerHeight; + navtreeHeight = windowHeight - headerHeight; + sideNavHeight = windowHeight; + } + content.css({height:contentHeight + "px"}); + navtree.css({height:navtreeHeight + "px"}); + sidenav.css({height:sideNavHeight + "px"}); var width=$(window).width(); if (width!=collapsedWidth) { if (width=desktop_vp) { @@ -91,7 +102,9 @@ function initResizable() } collapsedWidth=width; } - (document.getElementById(location.hash.slice(1))||document.body).scrollIntoView(); + if (location.hash.slice(1)) { + (document.getElementById(location.hash.slice(1))||document.body).scrollIntoView(); + } } function collapseExpand() diff --git a/docs/search/all_0.html b/docs/search/all_0.html index 26dd244..bb9e364 100644 --- a/docs/search/all_0.html +++ b/docs/search/all_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_1.html b/docs/search/all_1.html index 8eb215b..8989416 100644 --- a/docs/search/all_1.html +++ b/docs/search/all_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_1.js b/docs/search/all_1.js index 2aa49b3..ab5d8c9 100644 --- a/docs/search/all_1.js +++ b/docs/search/all_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['ansi_15',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] + ['ansi_0',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/all_10.html b/docs/search/all_10.html index 6fd3a4a..a7c1f9c 100644 --- a/docs/search/all_10.html +++ b/docs/search/all_10.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_10.js b/docs/search/all_10.js index 3ad80e3..7298532 100644 --- a/docs/search/all_10.js +++ b/docs/search/all_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['with_5fclutchlog_103',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] + ['with_5fclutchlog_0',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] ]; diff --git a/docs/search/all_2.html b/docs/search/all_2.html index b26d916..98e648c 100644 --- a/docs/search/all_2.html +++ b/docs/search/all_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_2.js b/docs/search/all_2.js index bb2aa6d..1e2731f 100644 --- a/docs/search/all_2.js +++ b/docs/search/all_2.js @@ -1,9 +1,9 @@ var searchData= [ - ['back_16',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], - ['back_5f16m_17',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], - ['back_5f256_18',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]], - ['bg_19',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]], - ['bg_5f16m_20',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt::bg_16M'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)']]], - ['bg_5f256_21',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt::bg_256'],['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)']]] + ['back_0',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], + ['back_5f16m_1',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], + ['back_5f256_2',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]], + ['bg_3',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]], + ['bg_5f16m_4',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt::bg_16M']]], + ['bg_5f256_5',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)'],['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt::bg_256']]] ]; diff --git a/docs/search/all_3.html b/docs/search/all_3.html index b61b96f..f4e8da7 100644 --- a/docs/search/all_3.html +++ b/docs/search/all_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_3.js b/docs/search/all_3.js index 00ceeae..388a551 100644 --- a/docs/search/all_3.js +++ b/docs/search/all_3.js @@ -1,28 +1,29 @@ var searchData= [ - ['clutchcode_22',['CLUTCHCODE',['../group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73',1,'clutchlog.h']]], - ['clutchdump_23',['CLUTCHDUMP',['../group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2',1,'clutchlog.h']]], - ['clutchdump_5fdefault_5fformat_24',['CLUTCHDUMP_DEFAULT_FORMAT',['../group___default_config.html#ga27b613c6727857a7cbcd0165d862034e',1,'clutchlog.h']]], - ['clutchdump_5fdefault_5fsep_25',['CLUTCHDUMP_DEFAULT_SEP',['../group___default_config.html#ga54d29e956575e1c731eab5406135c5df',1,'clutchlog.h']]], - ['clutchfunc_26',['CLUTCHFUNC',['../group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae',1,'clutchlog.h']]], - ['clutchloc_27',['CLUTCHLOC',['../group___use_macros.html#gae8911119d726a43b77f5781cb5a72813',1,'clutchlog.h']]], - ['clutchlog_28',['clutchlog',['../classclutchlog.html',1,'clutchlog'],['../group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d',1,'CLUTCHLOG(): clutchlog.h']]], - ['clutchlog_2eh_29',['clutchlog.h',['../clutchlog_8h.html',1,'']]], - ['clutchlog_5fdefault_5fdepth_5fbuilt_5fnodebug_30',['CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG',['../group___default_config.html#ga8564be479b948ee3052b61783c66d415',1,'clutchlog.h']]], - ['clutchlog_5fdefault_5fdepth_5fmark_31',['CLUTCHLOG_DEFAULT_DEPTH_MARK',['../group___default_config.html#ga45c4c964fad4ad1641d5c9c28c4645b9',1,'clutchlog.h']]], - ['clutchlog_5fdefault_5fformat_32',['CLUTCHLOG_DEFAULT_FORMAT',['../group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa',1,'clutchlog.h']]], - ['clutchlog_5fdefault_5fhfill_5fmark_33',['CLUTCHLOG_DEFAULT_HFILL_MARK',['../group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805',1,'clutchlog.h']]], - ['clutchlog_5fh_34',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysinfo_35',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysioctl_36',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]], - ['clutchlog_5fstrip_5fcalls_37',['CLUTCHLOG_STRIP_CALLS',['../group___default_config.html#ga98f30d814d4913a8a7c93a8793f49adf',1,'clutchlog.h']]], - ['clutchlogd_38',['CLUTCHLOGD',['../group___use_macros.html#ga369d365b7c25ec270596c3ca6839cf2c',1,'clutchlog.h']]], - ['color_39',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt::color'],['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color::color()']]], - ['color_5f16m_40',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt::color_16M'],['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], - ['color_5f256_41',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt::color_256'],['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]], - ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_42',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]], - ['colors_5f16_43',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], - ['colors_5f16m_44',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], - ['colors_5f256_45',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]], - ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_46',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]] + ['clutchcode_0',['CLUTCHCODE',['../group___use_macros.html#gaaf2e85e1153e6c88b458dd49e3c37c73',1,'clutchlog.h']]], + ['clutchdump_1',['CLUTCHDUMP',['../group___use_macros.html#ga572e3aa19d8b39e3ed0b9e91961104c2',1,'clutchlog.h']]], + ['clutchdump_5fdefault_5fformat_2',['CLUTCHDUMP_DEFAULT_FORMAT',['../group___default_config.html#ga27b613c6727857a7cbcd0165d862034e',1,'clutchlog.h']]], + ['clutchdump_5fdefault_5fsep_3',['CLUTCHDUMP_DEFAULT_SEP',['../group___default_config.html#ga54d29e956575e1c731eab5406135c5df',1,'clutchlog.h']]], + ['clutchfunc_4',['CLUTCHFUNC',['../group___use_macros.html#ga9f77cee4f853e582262930c9c17f90ae',1,'clutchlog.h']]], + ['clutchloc_5',['CLUTCHLOC',['../group___use_macros.html#gae8911119d726a43b77f5781cb5a72813',1,'clutchlog.h']]], + ['clutchlog_6',['clutchlog',['../classclutchlog.html',1,'']]], + ['clutchlog_7',['CLUTCHLOG',['../group___use_macros.html#ga6f86187e2b35e7e1907d688f504a197d',1,'clutchlog.h']]], + ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_8',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]], + ['clutchlog_2eh_9',['clutchlog.h',['../clutchlog_8h.html',1,'']]], + ['clutchlog_5fdefault_5fdepth_5fbuilt_5fnodebug_10',['CLUTCHLOG_DEFAULT_DEPTH_BUILT_NODEBUG',['../group___default_config.html#ga8564be479b948ee3052b61783c66d415',1,'clutchlog.h']]], + ['clutchlog_5fdefault_5fdepth_5fmark_11',['CLUTCHLOG_DEFAULT_DEPTH_MARK',['../group___default_config.html#ga45c4c964fad4ad1641d5c9c28c4645b9',1,'clutchlog.h']]], + ['clutchlog_5fdefault_5fformat_12',['CLUTCHLOG_DEFAULT_FORMAT',['../group___default_config.html#ga524c16f280d92ee8ab683162c9ce01fa',1,'clutchlog.h']]], + ['clutchlog_5fdefault_5fhfill_5fmark_13',['CLUTCHLOG_DEFAULT_HFILL_MARK',['../group___default_config.html#ga4eda0c1bfded5df89351b8ce8b9c2805',1,'clutchlog.h']]], + ['clutchlog_5fh_14',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysinfo_15',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysioctl_16',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]], + ['clutchlog_5fstrip_5fcalls_17',['CLUTCHLOG_STRIP_CALLS',['../group___default_config.html#ga98f30d814d4913a8a7c93a8793f49adf',1,'clutchlog.h']]], + ['clutchlogd_18',['CLUTCHLOGD',['../group___use_macros.html#ga369d365b7c25ec270596c3ca6839cf2c',1,'clutchlog.h']]], + ['color_19',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt::color'],['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color::color()']]], + ['color_5f16m_20',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt::color_16M'],['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], + ['color_5f256_21',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt::color_256'],['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]], + ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_22',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]], + ['colors_5f16_23',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], + ['colors_5f16m_24',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], + ['colors_5f256_25',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/all_4.html b/docs/search/all_4.html index 06de155..678d3a2 100644 --- a/docs/search/all_4.html +++ b/docs/search/all_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_4.js b/docs/search/all_4.js index 3f03f41..ea749bf 100644 --- a/docs/search/all_4.js +++ b/docs/search/all_4.js @@ -1,14 +1,14 @@ var searchData= [ - ['default_5fdepth_5fmark_47',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], - ['default_5fformat_48',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], - ['default_5fhfill_5fchar_49',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], - ['default_5fhfill_5fmax_50',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], - ['default_5fhfill_5fmin_51',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], - ['default_5fstrip_5fcalls_52',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], - ['default_20configuration_20management_53',['Default configuration management',['../group___default_config.html',1,'']]], - ['depth_5fstyles_54',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], - ['dump_55',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]], - ['dump_5fdefault_5fformat_56',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], - ['dump_5fdefault_5fsep_57',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] + ['default_20configuration_20management_0',['Default configuration management',['../group___default_config.html',1,'']]], + ['default_5fdepth_5fmark_1',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], + ['default_5fformat_2',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], + ['default_5fhfill_5fchar_3',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], + ['default_5fhfill_5fmax_4',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], + ['default_5fhfill_5fmin_5',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], + ['default_5fstrip_5fcalls_6',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], + ['depth_5fstyles_7',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], + ['dump_8',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]], + ['dump_5fdefault_5fformat_9',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], + ['dump_5fdefault_5fsep_10',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] ]; diff --git a/docs/search/all_5.html b/docs/search/all_5.html index 2544c4e..aa9af78 100644 --- a/docs/search/all_5.html +++ b/docs/search/all_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_5.js b/docs/search/all_5.js index e1b533b..f91ba4b 100644 --- a/docs/search/all_5.js +++ b/docs/search/all_5.js @@ -1,18 +1,18 @@ var searchData= [ - ['fg_58',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]], - ['fg_5f16m_59',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt::fg_16M'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)']]], - ['fg_5f256_60',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt::fg_256'],['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], - ['file_61',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], - ['filehash_5fstyles_62',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], - ['filename_63',['filename',['../classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e',1,'clutchlog::filename()'],['../classclutchlog.html#a82b9375728af2d962831a743d95f4ae7',1,'clutchlog::filename(filename f)']]], - ['fmt_64',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog::fmt'],['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt::fmt()']]], - ['fore_65',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], - ['fore_5f16m_66',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], - ['fore_5f256_67',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]], - ['format_68',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], - ['format_5fcomment_69',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], - ['formating_20tools_70',['Formating tools',['../group___formating.html',1,'']]], - ['func_71',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], - ['funchash_5fstyles_72',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] + ['fg_0',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]], + ['fg_5f16m_1',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt::fg_16M'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)']]], + ['fg_5f256_2',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt::fg_256'],['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], + ['file_3',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], + ['filehash_5fstyles_4',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], + ['filename_5',['filename',['../classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e',1,'clutchlog::filename()'],['../classclutchlog.html#a82b9375728af2d962831a743d95f4ae7',1,'clutchlog::filename(filename f)']]], + ['fmt_6',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog::fmt'],['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt::fmt()']]], + ['fore_7',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], + ['fore_5f16m_8',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], + ['fore_5f256_9',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]], + ['format_10',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], + ['format_5fcomment_11',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], + ['formating_20tools_12',['Formating tools',['../group___formating.html',1,'']]], + ['func_13',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], + ['funchash_5fstyles_14',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] ]; diff --git a/docs/search/all_6.html b/docs/search/all_6.html index 43f14ea..d3026a7 100644 --- a/docs/search/all_6.html +++ b/docs/search/all_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_6.js b/docs/search/all_6.js index 7734da7..51dd231 100644 --- a/docs/search/all_6.js +++ b/docs/search/all_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['ground_73',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] + ['ground_0',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] ]; diff --git a/docs/search/all_7.html b/docs/search/all_7.html index af52f82..b2ee042 100644 --- a/docs/search/all_7.html +++ b/docs/search/all_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_7.js b/docs/search/all_7.js index 68cafeb..8c144e7 100644 --- a/docs/search/all_7.js +++ b/docs/search/all_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['high_2dlevel_20api_20macros_74',['High-level API macros',['../group___use_macros.html',1,'']]] + ['high_2dlevel_20api_20macros_0',['High-level API macros',['../group___use_macros.html',1,'']]] ]; diff --git a/docs/search/all_8.html b/docs/search/all_8.html index cf2b5df..40a0b3f 100644 --- a/docs/search/all_8.html +++ b/docs/search/all_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_8.js b/docs/search/all_8.js index 1de2bbd..f672c72 100644 --- a/docs/search/all_8.js +++ b/docs/search/all_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_75',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]], - ['index_76',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]], - ['is_5fset_77',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] + ['index_0',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]], + ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_1',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]], + ['is_5fset_2',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] ]; diff --git a/docs/search/all_9.html b/docs/search/all_9.html index 690785a..7c49144 100644 --- a/docs/search/all_9.html +++ b/docs/search/all_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_9.js b/docs/search/all_9.js index dfc3e8a..1b3652c 100644 --- a/docs/search/all_9.js +++ b/docs/search/all_9.js @@ -1,11 +1,11 @@ var searchData= [ - ['level_78',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]], - ['level_5fof_79',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], - ['levels_80',['levels',['../classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a',1,'clutchlog']]], - ['line_81',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], - ['locate_82',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], - ['location_83',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], - ['log_84',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], - ['logger_85',['logger',['../classclutchlog.html#acfaceb77da01503b432644a3efaee4fa',1,'clutchlog']]] + ['level_0',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]], + ['level_5fof_1',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], + ['levels_2',['levels',['../classclutchlog.html#a8d206443dea964f77965450a83693d98',1,'clutchlog']]], + ['line_3',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], + ['locate_4',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], + ['location_5',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], + ['log_6',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], + ['logger_7',['logger',['../classclutchlog.html#a6e2a5e98fa9f722d90ba6515895543ac',1,'clutchlog']]] ]; diff --git a/docs/search/all_a.html b/docs/search/all_a.html index f2f3d3a..fc9d79c 100644 --- a/docs/search/all_a.html +++ b/docs/search/all_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_a.js b/docs/search/all_a.js index 2972a6d..a8acf08 100644 --- a/docs/search/all_a.js +++ b/docs/search/all_a.js @@ -1,6 +1,6 @@ var searchData= [ - ['main_20class_86',['Main class',['../group___main.html',1,'']]], - ['matches_87',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], - ['mode_88',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] + ['main_20class_0',['Main class',['../group___main.html',1,'']]], + ['matches_1',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], + ['mode_2',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/all_b.html b/docs/search/all_b.html index 14f3403..dafb1fa 100644 --- a/docs/search/all_b.html +++ b/docs/search/all_b.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_b.js b/docs/search/all_b.js index d173001..d88c1e7 100644 --- a/docs/search/all_b.js +++ b/docs/search/all_b.js @@ -1,6 +1,6 @@ var searchData= [ - ['operator_28_29_89',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], - ['operator_3c_3c_90',['operator<<',['../group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da',1,'clutchlog::fmt::operator<<()']]], - ['out_91',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266',1,'clutchlog::out()']]] + ['operator_28_29_0',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], + ['operator_3c_3c_1',['operator<<',['../group__colors16.html#gac00a2f504f5308207f7a94915fe9a9c5',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga93d498671d8dc2e796978c4f4de51241',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a4860c13958d21118a564920fa78e6720',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a24568f7a157d50e3075a74a619719c84',1,'clutchlog::fmt::operator<<()']]], + ['out_2',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#ab7773f031a00a05b8c83c1936406cb98',1,'clutchlog::out()']]] ]; diff --git a/docs/search/all_c.html b/docs/search/all_c.html index da60ab8..9df619d 100644 --- a/docs/search/all_c.html +++ b/docs/search/all_c.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_c.js b/docs/search/all_c.js index b7a232d..3b88170 100644 --- a/docs/search/all_c.js +++ b/docs/search/all_c.js @@ -1,4 +1,4 @@ var searchData= [ - ['print_5fon_92',['print_on',['../structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#aaae6106a11eddade981172324a43df68',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a674910195e7bb14d78f0cf56c308a47e',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0',1,'clutchlog::fmt::print_on()']]] + ['print_5fon_0',['print_on',['../structclutchlog_1_1fmt_1_1color.html#a121619a01bf48e53b3478d23989c0c59',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad4e941accf566378e0007ec881096fb0',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#ac6a4b8650ea7e9171fc76d6226015005',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#ad754c64eb6fd8730a616d113cb9f9129',1,'clutchlog::fmt::print_on()']]] ]; diff --git a/docs/search/all_d.html b/docs/search/all_d.html index bc376fe..95d8eec 100644 --- a/docs/search/all_d.html +++ b/docs/search/all_d.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_d.js b/docs/search/all_d.js index 16fdbcb..0a100cc 100644 --- a/docs/search/all_d.js +++ b/docs/search/all_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['red_93',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]], - ['replace_94',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] + ['red_0',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]], + ['replace_1',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] ]; diff --git a/docs/search/all_e.html b/docs/search/all_e.html index 2e3c74d..a54e120 100644 --- a/docs/search/all_e.html +++ b/docs/search/all_e.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_e.js b/docs/search/all_e.js index e1f8b5a..e48732c 100644 --- a/docs/search/all_e.js +++ b/docs/search/all_e.js @@ -1,7 +1,7 @@ var searchData= [ - ['scope_5ft_95',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog::scope_t'],['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t::scope_t()']]], - ['stage_96',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], - ['str_97',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], - ['style_98',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt::style()'],['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] + ['scope_5ft_0',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog::scope_t'],['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t::scope_t()']]], + ['stage_1',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], + ['str_2',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], + ['style_3',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt::style()'],['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] ]; diff --git a/docs/search/all_f.html b/docs/search/all_f.html index 246f8ab..8d0aed3 100644 --- a/docs/search/all_f.html +++ b/docs/search/all_f.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/all_f.js b/docs/search/all_f.js index ab2b559..8415699 100644 --- a/docs/search/all_f.js +++ b/docs/search/all_f.js @@ -1,7 +1,7 @@ var searchData= [ - ['there_99',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], - ['threshold_100',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]], - ['type_101',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]], - ['typo_102',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] + ['there_0',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], + ['threshold_1',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]], + ['type_2',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]], + ['typo_3',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/classes_0.html b/docs/search/classes_0.html index f7e4c14..9d4f871 100644 --- a/docs/search/classes_0.html +++ b/docs/search/classes_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/classes_0.js b/docs/search/classes_0.js index fdb2334..97e4769 100644 --- a/docs/search/classes_0.js +++ b/docs/search/classes_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['bg_5f16m_104',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt']]], - ['bg_5f256_105',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt']]] + ['bg_5f16m_0',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html',1,'clutchlog::fmt']]], + ['bg_5f256_1',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/classes_1.html b/docs/search/classes_1.html index c7ff4b3..0557f9f 100644 --- a/docs/search/classes_1.html +++ b/docs/search/classes_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/classes_1.js b/docs/search/classes_1.js index 3894de8..7dda7a6 100644 --- a/docs/search/classes_1.js +++ b/docs/search/classes_1.js @@ -1,7 +1,7 @@ var searchData= [ - ['clutchlog_106',['clutchlog',['../classclutchlog.html',1,'']]], - ['color_107',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt']]], - ['color_5f16m_108',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt']]], - ['color_5f256_109',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt']]] + ['clutchlog_0',['clutchlog',['../classclutchlog.html',1,'']]], + ['color_1',['color',['../structclutchlog_1_1fmt_1_1color.html',1,'clutchlog::fmt']]], + ['color_5f16m_2',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html',1,'clutchlog::fmt']]], + ['color_5f256_3',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/classes_2.html b/docs/search/classes_2.html index 0d1e8a0..fa20861 100644 --- a/docs/search/classes_2.html +++ b/docs/search/classes_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/classes_2.js b/docs/search/classes_2.js index b6d5ae6..b04c1fa 100644 --- a/docs/search/classes_2.js +++ b/docs/search/classes_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['fg_5f16m_110',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt']]], - ['fg_5f256_111',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt']]], - ['fmt_112',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog']]] + ['fg_5f16m_0',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html',1,'clutchlog::fmt']]], + ['fg_5f256_1',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html',1,'clutchlog::fmt']]], + ['fmt_2',['fmt',['../classclutchlog_1_1fmt.html',1,'clutchlog']]] ]; diff --git a/docs/search/classes_3.html b/docs/search/classes_3.html index 2102545..98fbc87 100644 --- a/docs/search/classes_3.html +++ b/docs/search/classes_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/classes_3.js b/docs/search/classes_3.js index 94d55bd..13d8ac2 100644 --- a/docs/search/classes_3.js +++ b/docs/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['scope_5ft_113',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog']]] + ['scope_5ft_0',['scope_t',['../structclutchlog_1_1scope__t.html',1,'clutchlog']]] ]; diff --git a/docs/search/close.svg b/docs/search/close.svg new file mode 100644 index 0000000..a933eea --- /dev/null +++ b/docs/search/close.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/docs/search/defines_0.html b/docs/search/defines_0.html index 2deb369..d0cf633 100644 --- a/docs/search/defines_0.html +++ b/docs/search/defines_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/defines_0.js b/docs/search/defines_0.js index 0e94cd9..5b63def 100644 --- a/docs/search/defines_0.js +++ b/docs/search/defines_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['clutchlog_5fh_196',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysinfo_197',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], - ['clutchlog_5fhave_5funix_5fsysioctl_198',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]] + ['clutchlog_5fh_0',['CLUTCHLOG_H',['../clutchlog_8h.html#a0acf7d306292cdee864356f0b433cc16',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysinfo_1',['CLUTCHLOG_HAVE_UNIX_SYSINFO',['../clutchlog_8h.html#a6bbcf13504687db4dbe0474931d867fb',1,'clutchlog.h']]], + ['clutchlog_5fhave_5funix_5fsysioctl_2',['CLUTCHLOG_HAVE_UNIX_SYSIOCTL',['../clutchlog_8h.html#a6bddd1e1be320823da0d6b1d5cef7817',1,'clutchlog.h']]] ]; diff --git a/docs/search/defines_1.html b/docs/search/defines_1.html index e0d0b6d..4369011 100644 --- a/docs/search/defines_1.html +++ b/docs/search/defines_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/defines_1.js b/docs/search/defines_1.js index 0f8fb71..7298532 100644 --- a/docs/search/defines_1.js +++ b/docs/search/defines_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['with_5fclutchlog_199',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] + ['with_5fclutchlog_0',['WITH_CLUTCHLOG',['../clutchlog_8h.html#a5c126962abcc7a40e504a6fc3abdfcc4',1,'clutchlog.h']]] ]; diff --git a/docs/search/enums_0.html b/docs/search/enums_0.html index 9669700..ec25efd 100644 --- a/docs/search/enums_0.html +++ b/docs/search/enums_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/enums_0.js b/docs/search/enums_0.js index de05d1c..ab5d8c9 100644 --- a/docs/search/enums_0.js +++ b/docs/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['ansi_185',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] + ['ansi_0',['ansi',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/enums_1.html b/docs/search/enums_1.html index dfec174..cc99a33 100644 --- a/docs/search/enums_1.html +++ b/docs/search/enums_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/enums_1.js b/docs/search/enums_1.js index 38744d8..8e18bad 100644 --- a/docs/search/enums_1.js +++ b/docs/search/enums_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['bg_186',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]] + ['bg_0',['bg',['../group__colors16.html#ga1cf3e27e4041250ffea0a6d58010da1e',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/enums_2.html b/docs/search/enums_2.html index db70c36..cd5e771 100644 --- a/docs/search/enums_2.html +++ b/docs/search/enums_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/enums_2.js b/docs/search/enums_2.js index c374900..0db86de 100644 --- a/docs/search/enums_2.js +++ b/docs/search/enums_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['fg_187',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]], - ['filename_188',['filename',['../classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e',1,'clutchlog']]] + ['fg_0',['fg',['../group__colors16.html#ga4662a3ec3577c6a575a2c734636ed8a0',1,'clutchlog::fmt']]], + ['filename_1',['filename',['../classclutchlog.html#a822062ffa857bd16ff488f9c749ff20e',1,'clutchlog']]] ]; diff --git a/docs/search/enums_3.html b/docs/search/enums_3.html index fb7ec17..007101d 100644 --- a/docs/search/enums_3.html +++ b/docs/search/enums_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/enums_3.js b/docs/search/enums_3.js index 4e146eb..51dd231 100644 --- a/docs/search/enums_3.js +++ b/docs/search/enums_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['ground_189',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] + ['ground_0',['ground',['../structclutchlog_1_1fmt_1_1color.html#ad4d10c015b3af3cc10d1cf40fe38e4f0',1,'clutchlog::fmt::color']]] ]; diff --git a/docs/search/enums_4.html b/docs/search/enums_4.html index b8b51ef..b03e8b8 100644 --- a/docs/search/enums_4.html +++ b/docs/search/enums_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/enums_4.js b/docs/search/enums_4.js index c3daf46..1b85abd 100644 --- a/docs/search/enums_4.js +++ b/docs/search/enums_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['level_190',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]] + ['level_0',['level',['../classclutchlog.html#a10fd25a1b51c8c95bd6d876ce1b4b928',1,'clutchlog']]] ]; diff --git a/docs/search/enums_5.html b/docs/search/enums_5.html index d39b033..9807152 100644 --- a/docs/search/enums_5.html +++ b/docs/search/enums_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/enums_5.js b/docs/search/enums_5.js index 24bc40b..ec88639 100644 --- a/docs/search/enums_5.js +++ b/docs/search/enums_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['typo_191',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] + ['typo_0',['typo',['../classclutchlog_1_1fmt.html#a932f47b78fb7b10590d5613a1c4eab89',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/enumvalues_0.html b/docs/search/enumvalues_0.html index 9286248..71e9b7c 100644 --- a/docs/search/enumvalues_0.html +++ b/docs/search/enumvalues_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/enumvalues_0.js b/docs/search/enumvalues_0.js index a9f6d14..9b5419e 100644 --- a/docs/search/enumvalues_0.js +++ b/docs/search/enumvalues_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['colors_5f16_192',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], - ['colors_5f16m_193',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], - ['colors_5f256_194',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]] + ['colors_5f16_0',['colors_16',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1e7cced329549fc4c2393381f068062e',1,'clutchlog::fmt']]], + ['colors_5f16m_1',['colors_16M',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a1844e5aae3a3eefc500c545e3c35bcfa',1,'clutchlog::fmt']]], + ['colors_5f256_2',['colors_256',['../classclutchlog_1_1fmt.html#a4d0b3c87ba935addf3581b000c0d7502a7a3c32a8827eb17435511b4c7a429749',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/files_0.html b/docs/search/files_0.html index 737608e..2dbb4c2 100644 --- a/docs/search/files_0.html +++ b/docs/search/files_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/files_0.js b/docs/search/files_0.js index 712b4cc..8f6ceae 100644 --- a/docs/search/files_0.js +++ b/docs/search/files_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['clutchlog_2eh_114',['clutchlog.h',['../clutchlog_8h.html',1,'']]] + ['clutchlog_2eh_0',['clutchlog.h',['../clutchlog_8h.html',1,'']]] ]; diff --git a/docs/search/functions_0.html b/docs/search/functions_0.html index e17c711..3b739c7 100644 --- a/docs/search/functions_0.html +++ b/docs/search/functions_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_0.js b/docs/search/functions_0.js index 609cc2c..f14939e 100644 --- a/docs/search/functions_0.js +++ b/docs/search/functions_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['bg_5f16m_115',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)']]], - ['bg_5f256_116',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)']]] + ['bg_5f16m_0',['bg_16M',['../structclutchlog_1_1fmt_1_1bg__16_m.html#a363c314ab6a8aa22951b5500d7a78ad0',1,'clutchlog::fmt::bg_16M::bg_16M()'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#ace018922ae99f32b48bf5cacaec91501',1,'clutchlog::fmt::bg_16M::bg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#adcd5bd1e69e76e3b36015cf687693c97',1,'clutchlog::fmt::bg_16M::bg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1bg__16_m.html#a68f8cb4ab78a1cfb3b7b8e1e95bee11d',1,'clutchlog::fmt::bg_16M::bg_16M(const bg &)']]], + ['bg_5f256_1',['bg_256',['../structclutchlog_1_1fmt_1_1bg__256.html#a0d244a542b6b98a373f8b1f9e92a6a90',1,'clutchlog::fmt::bg_256::bg_256()'],['../structclutchlog_1_1fmt_1_1bg__256.html#a83c663b1a9f00ba7ba7649c9c5605fad',1,'clutchlog::fmt::bg_256::bg_256(const short b)'],['../structclutchlog_1_1fmt_1_1bg__256.html#a096d302be7373acaaf225644683408bd',1,'clutchlog::fmt::bg_256::bg_256(const bg &)']]] ]; diff --git a/docs/search/functions_1.html b/docs/search/functions_1.html index 0ddac0a..2cef5e3 100644 --- a/docs/search/functions_1.html +++ b/docs/search/functions_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_1.js b/docs/search/functions_1.js index f05ad1f..75f22f6 100644 --- a/docs/search/functions_1.js +++ b/docs/search/functions_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['color_117',['color',['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color']]], - ['color_5f16m_118',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], - ['color_5f256_119',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]] + ['color_0',['color',['../structclutchlog_1_1fmt_1_1color.html#a741d0165287350d8fcacb1f472ce5dac',1,'clutchlog::fmt::color']]], + ['color_5f16m_1',['color_16M',['../structclutchlog_1_1fmt_1_1color__16_m.html#aea10e881fb9b570267f5751fb67c4282',1,'clutchlog::fmt::color_16M::color_16M(ground t)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a36d9cf42044fec34b7858142d86137d3',1,'clutchlog::fmt::color_16M::color_16M(ground t, short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a55e39e7eb3ced3095c00914eff52470c',1,'clutchlog::fmt::color_16M::color_16M(ground t, const std::string &srgb)']]], + ['color_5f256_2',['color_256',['../structclutchlog_1_1fmt_1_1color__256.html#a12fdff3c5c4edbf952aaa31519f0171c',1,'clutchlog::fmt::color_256::color_256(ground t)'],['../structclutchlog_1_1fmt_1_1color__256.html#a1b68065b35141c018b33c3f2c45f5726',1,'clutchlog::fmt::color_256::color_256(ground t, const short i)']]] ]; diff --git a/docs/search/functions_2.html b/docs/search/functions_2.html index 2737c5a..3308c65 100644 --- a/docs/search/functions_2.html +++ b/docs/search/functions_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_2.js b/docs/search/functions_2.js index 10882d3..367ad58 100644 --- a/docs/search/functions_2.js +++ b/docs/search/functions_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['depth_5fstyles_120',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], - ['dump_121',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]] + ['depth_5fstyles_0',['depth_styles',['../classclutchlog.html#a08310b92e86687349e70f56f9ac1d656',1,'clutchlog']]], + ['dump_1',['dump',['../classclutchlog.html#ab72a0adc9ff287270afe09c9da825fdb',1,'clutchlog']]] ]; diff --git a/docs/search/functions_3.html b/docs/search/functions_3.html index 6da86e7..43ac697 100644 --- a/docs/search/functions_3.html +++ b/docs/search/functions_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_3.js b/docs/search/functions_3.js index 9a3c384..895c337 100644 --- a/docs/search/functions_3.js +++ b/docs/search/functions_3.js @@ -1,13 +1,13 @@ var searchData= [ - ['fg_5f16m_122',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)']]], - ['fg_5f256_123',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], - ['file_124',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], - ['filehash_5fstyles_125',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], - ['filename_126',['filename',['../classclutchlog.html#a82b9375728af2d962831a743d95f4ae7',1,'clutchlog']]], - ['fmt_127',['fmt',['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt']]], - ['format_128',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], - ['format_5fcomment_129',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], - ['func_130',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], - ['funchash_5fstyles_131',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] + ['fg_5f16m_0',['fg_16M',['../structclutchlog_1_1fmt_1_1fg__16_m.html#a531b717b8d78a0a5929fa90d0a01d7e5',1,'clutchlog::fmt::fg_16M::fg_16M(short r, short g, short b)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#abc768d6b7c2139c14f210755108006d3',1,'clutchlog::fmt::fg_16M::fg_16M(const std::string &srgb)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a9da40a4a7ff3b80f028f26322f59eba8',1,'clutchlog::fmt::fg_16M::fg_16M(const fg &)'],['../structclutchlog_1_1fmt_1_1fg__16_m.html#a984525f33eb86b7f8b3e5d0874611194',1,'clutchlog::fmt::fg_16M::fg_16M()']]], + ['fg_5f256_1',['fg_256',['../structclutchlog_1_1fmt_1_1fg__256.html#a97c241e9f80c63d269953cc525a72c7a',1,'clutchlog::fmt::fg_256::fg_256()'],['../structclutchlog_1_1fmt_1_1fg__256.html#a6df3d848db0e55c79709fb4565cbfd59',1,'clutchlog::fmt::fg_256::fg_256(const short f)'],['../structclutchlog_1_1fmt_1_1fg__256.html#a501fff36520f20ba4973ba3848fb9c23',1,'clutchlog::fmt::fg_256::fg_256(const fg &)']]], + ['file_2',['file',['../classclutchlog.html#a10064493c22f5c03b502a42d814c5c5c',1,'clutchlog']]], + ['filehash_5fstyles_3',['filehash_styles',['../classclutchlog.html#ae17db5808155fbc6dc48b4727d0c3abf',1,'clutchlog']]], + ['filename_4',['filename',['../classclutchlog.html#a82b9375728af2d962831a743d95f4ae7',1,'clutchlog']]], + ['fmt_5',['fmt',['../classclutchlog_1_1fmt.html#a407506bc02ed3f91d88b3df630e54959',1,'clutchlog::fmt']]], + ['format_6',['format',['../classclutchlog.html#a656c277e074b64728cca871f2b484d1c',1,'clutchlog::format(const std::string &format)'],['../classclutchlog.html#afc53dbca51d0e2322a21899d0c571a80',1,'clutchlog::format() const'],['../classclutchlog.html#abd692cca9a2e772e7c9d6531bb3c7761',1,'clutchlog::format(std::string row, const std::string &what, const level &stage, const std::string &file, const std::string &func, const size_t line) const']]], + ['format_5fcomment_7',['format_comment',['../classclutchlog.html#a2144abe4ec6f630126b6490908b5f924',1,'clutchlog::format_comment(const std::string &format)'],['../classclutchlog.html#aa8d0a569ed3623ce36c5e567ec2d1ad5',1,'clutchlog::format_comment() const']]], + ['func_8',['func',['../classclutchlog.html#ad32b5a0274dc03ee0004f67ba58b2447',1,'clutchlog']]], + ['funchash_5fstyles_9',['funchash_styles',['../classclutchlog.html#acbb50f6306ebb3c8b0d1a52e7f327416',1,'clutchlog']]] ]; diff --git a/docs/search/functions_4.html b/docs/search/functions_4.html index 911304e..d12c2df 100644 --- a/docs/search/functions_4.html +++ b/docs/search/functions_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_4.js b/docs/search/functions_4.js index 94d08f7..0a6fb8a 100644 --- a/docs/search/functions_4.js +++ b/docs/search/functions_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['is_5fset_132',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] + ['is_5fset_0',['is_set',['../structclutchlog_1_1fmt_1_1color.html#a96d7161ef1e7cc631ae670cd3f364603',1,'clutchlog::fmt::color::is_set()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad79557682cec1c053dda258581972111',1,'clutchlog::fmt::color_256::is_set()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a780c11e42bb140732ffd37cf4eef9e1d',1,'clutchlog::fmt::color_16M::is_set()']]] ]; diff --git a/docs/search/functions_5.html b/docs/search/functions_5.html index 61b920d..7266236 100644 --- a/docs/search/functions_5.html +++ b/docs/search/functions_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_5.js b/docs/search/functions_5.js index 363dae5..f44f18a 100644 --- a/docs/search/functions_5.js +++ b/docs/search/functions_5.js @@ -1,10 +1,10 @@ var searchData= [ - ['level_5fof_133',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], - ['levels_134',['levels',['../classclutchlog.html#aff3aa09fb60f7d6dc688c028d3834d8a',1,'clutchlog']]], - ['line_135',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], - ['locate_136',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], - ['location_137',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], - ['log_138',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], - ['logger_139',['logger',['../classclutchlog.html#acfaceb77da01503b432644a3efaee4fa',1,'clutchlog']]] + ['level_5fof_0',['level_of',['../classclutchlog.html#acebed8c9df9204f22bf8488e62e1cedd',1,'clutchlog']]], + ['levels_1',['levels',['../classclutchlog.html#a8d206443dea964f77965450a83693d98',1,'clutchlog']]], + ['line_2',['line',['../classclutchlog.html#aa26c6b81ebaeb9e9daa3457e3a3d17c9',1,'clutchlog']]], + ['locate_3',['locate',['../classclutchlog.html#a4ebdfcded6c56262676bf6926d63fc96',1,'clutchlog']]], + ['location_4',['location',['../classclutchlog.html#a6666106b9e5c239b6ae5e0d1091648e3',1,'clutchlog']]], + ['log_5',['log',['../classclutchlog.html#a14c19e17c54d6353ba34c0dc3371094a',1,'clutchlog']]], + ['logger_6',['logger',['../classclutchlog.html#a6e2a5e98fa9f722d90ba6515895543ac',1,'clutchlog']]] ]; diff --git a/docs/search/functions_6.html b/docs/search/functions_6.html index dc70a4a..7f9fc45 100644 --- a/docs/search/functions_6.html +++ b/docs/search/functions_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_6.js b/docs/search/functions_6.js index 08fcb6f..75f87dd 100644 --- a/docs/search/functions_6.js +++ b/docs/search/functions_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['operator_28_29_140',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], - ['out_141',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#a6c6ab42a1df147e6c2d115bc36ec8266',1,'clutchlog::out()']]] + ['operator_28_29_0',['operator()',['../classclutchlog_1_1fmt.html#afeaedd18298498d1dcfcc15f5f17ac3c',1,'clutchlog::fmt']]], + ['out_1',['out',['../classclutchlog.html#a7fd7c7bd3668c537061c314a619a336d',1,'clutchlog::out(std::ostream &out)'],['../classclutchlog.html#ab7773f031a00a05b8c83c1936406cb98',1,'clutchlog::out()']]] ]; diff --git a/docs/search/functions_7.html b/docs/search/functions_7.html index 7de3106..ad0f88b 100644 --- a/docs/search/functions_7.html +++ b/docs/search/functions_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_7.js b/docs/search/functions_7.js index 93b995b..3b88170 100644 --- a/docs/search/functions_7.js +++ b/docs/search/functions_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['print_5fon_142',['print_on',['../structclutchlog_1_1fmt_1_1color.html#aa75e958436afe333924b6db3e5f0821f',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#aaae6106a11eddade981172324a43df68',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#a674910195e7bb14d78f0cf56c308a47e',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#a0b607e343b6813b99eafca1fdfec9cd0',1,'clutchlog::fmt::print_on()']]] + ['print_5fon_0',['print_on',['../structclutchlog_1_1fmt_1_1color.html#a121619a01bf48e53b3478d23989c0c59',1,'clutchlog::fmt::color::print_on()'],['../structclutchlog_1_1fmt_1_1color__256.html#ad4e941accf566378e0007ec881096fb0',1,'clutchlog::fmt::color_256::print_on()'],['../structclutchlog_1_1fmt_1_1color__16_m.html#ac6a4b8650ea7e9171fc76d6226015005',1,'clutchlog::fmt::color_16M::print_on()'],['../classclutchlog_1_1fmt.html#ad754c64eb6fd8730a616d113cb9f9129',1,'clutchlog::fmt::print_on()']]] ]; diff --git a/docs/search/functions_8.html b/docs/search/functions_8.html index 7422be2..ea7fa74 100644 --- a/docs/search/functions_8.html +++ b/docs/search/functions_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_8.js b/docs/search/functions_8.js index bf04779..4ba282a 100644 --- a/docs/search/functions_8.js +++ b/docs/search/functions_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['replace_143',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] + ['replace_0',['replace',['../classclutchlog.html#a972f895c70edc335f3018a2c8971d59e',1,'clutchlog::replace(const std::string &form, const std::string &mark, const std::string &tag) const'],['../classclutchlog.html#ae90d5a1a428587ad67b38b2ea4ca9fa2',1,'clutchlog::replace(const std::string &form, const std::string &mark, const size_t tag) const']]] ]; diff --git a/docs/search/functions_9.html b/docs/search/functions_9.html index befd4fa..d831dc7 100644 --- a/docs/search/functions_9.html +++ b/docs/search/functions_9.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_9.js b/docs/search/functions_9.js index 2fa02c1..056f647 100644 --- a/docs/search/functions_9.js +++ b/docs/search/functions_9.js @@ -1,6 +1,6 @@ var searchData= [ - ['scope_5ft_144',['scope_t',['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t']]], - ['str_145',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], - ['style_146',['style',['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] + ['scope_5ft_0',['scope_t',['../structclutchlog_1_1scope__t.html#a0f1d865ffcf17f215e5559cdd2690572',1,'clutchlog::scope_t']]], + ['str_1',['str',['../classclutchlog_1_1fmt.html#ab588e04e982b0b26ec979773d51ad41b',1,'clutchlog::fmt']]], + ['style_2',['style',['../classclutchlog.html#ac3ec55057b9c734b66f169bf43dbd591',1,'clutchlog::style(level stage, FMT... styles)'],['../classclutchlog.html#ad1cfa9945c3f7f98fe8ce724c627d0d6',1,'clutchlog::style(level stage, fmt style)'],['../classclutchlog.html#a4831f44fd5ade102e57320632095934d',1,'clutchlog::style(level stage) const']]] ]; diff --git a/docs/search/functions_a.html b/docs/search/functions_a.html index a81e963..7018fc6 100644 --- a/docs/search/functions_a.html +++ b/docs/search/functions_a.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/functions_a.js b/docs/search/functions_a.js index 76e1c6c..5d57150 100644 --- a/docs/search/functions_a.js +++ b/docs/search/functions_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['threshold_147',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]] + ['threshold_0',['threshold',['../classclutchlog.html#a3cb0e4f43a4cadf1966001ad7c9861f4',1,'clutchlog::threshold(level l)'],['../classclutchlog.html#a7a7738eaad114bfa870121412fe23ad9',1,'clutchlog::threshold(const std::string &l)'],['../classclutchlog.html#ab45287cc9c14217904a13aff49573732',1,'clutchlog::threshold() const']]] ]; diff --git a/docs/search/groups_0.html b/docs/search/groups_0.html index a2d9335..76e992a 100644 --- a/docs/search/groups_0.html +++ b/docs/search/groups_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/groups_0.js b/docs/search/groups_0.js index 14df792..2b60b56 100644 --- a/docs/search/groups_0.js +++ b/docs/search/groups_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_200',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]] + ['colors_20management_20in_2016_20colors_20mode_20_284_2dbits_20ansi_29_2e_0',['Colors management in 16 colors mode (4-bits ANSI).',['../group__colors16.html',1,'']]] ]; diff --git a/docs/search/groups_1.html b/docs/search/groups_1.html index aa06d65..38ad74b 100644 --- a/docs/search/groups_1.html +++ b/docs/search/groups_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/groups_1.js b/docs/search/groups_1.js index 18748e5..3f14de6 100644 --- a/docs/search/groups_1.js +++ b/docs/search/groups_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['default_20configuration_20management_201',['Default configuration management',['../group___default_config.html',1,'']]] + ['default_20configuration_20management_0',['Default configuration management',['../group___default_config.html',1,'']]] ]; diff --git a/docs/search/groups_2.html b/docs/search/groups_2.html index a205d30..8152426 100644 --- a/docs/search/groups_2.html +++ b/docs/search/groups_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/groups_2.js b/docs/search/groups_2.js index af09b20..ace62b7 100644 --- a/docs/search/groups_2.js +++ b/docs/search/groups_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['formating_20tools_202',['Formating tools',['../group___formating.html',1,'']]] + ['formating_20tools_0',['Formating tools',['../group___formating.html',1,'']]] ]; diff --git a/docs/search/groups_3.html b/docs/search/groups_3.html index 4255bed..c73a37c 100644 --- a/docs/search/groups_3.html +++ b/docs/search/groups_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/groups_3.js b/docs/search/groups_3.js index 0ffa1f2..8c144e7 100644 --- a/docs/search/groups_3.js +++ b/docs/search/groups_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['high_2dlevel_20api_20macros_203',['High-level API macros',['../group___use_macros.html',1,'']]] + ['high_2dlevel_20api_20macros_0',['High-level API macros',['../group___use_macros.html',1,'']]] ]; diff --git a/docs/search/groups_4.html b/docs/search/groups_4.html index 8644fbe..d42aefb 100644 --- a/docs/search/groups_4.html +++ b/docs/search/groups_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/groups_4.js b/docs/search/groups_4.js index d53afb4..785e536 100644 --- a/docs/search/groups_4.js +++ b/docs/search/groups_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_204',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]] + ['internal_20colors_20management_20in_20256_20and_2016m_20colors_20modes_2e_0',['Internal colors management in 256 and 16M colors modes.',['../group__colors256__16_m.html',1,'']]] ]; diff --git a/docs/search/groups_5.html b/docs/search/groups_5.html index 1e9ba85..cf1d61a 100644 --- a/docs/search/groups_5.html +++ b/docs/search/groups_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/groups_5.js b/docs/search/groups_5.js index ed6c036..050e0d2 100644 --- a/docs/search/groups_5.js +++ b/docs/search/groups_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['main_20class_205',['Main class',['../group___main.html',1,'']]] + ['main_20class_0',['Main class',['../group___main.html',1,'']]] ]; diff --git a/docs/search/mag_sel.svg b/docs/search/mag_sel.svg new file mode 100644 index 0000000..03626f6 --- /dev/null +++ b/docs/search/mag_sel.svg @@ -0,0 +1,74 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/docs/search/nomatches.html b/docs/search/nomatches.html index 4377320..2b9360b 100644 --- a/docs/search/nomatches.html +++ b/docs/search/nomatches.html @@ -1,5 +1,6 @@ - + + diff --git a/docs/search/pages_0.html b/docs/search/pages_0.html index 9a6a29a..1981712 100644 --- a/docs/search/pages_0.html +++ b/docs/search/pages_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/pages_0.js b/docs/search/pages_0.js index 1be2024..b139894 100644 --- a/docs/search/pages_0.js +++ b/docs/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_206',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]] + ['clutchlog_20—_20versatile_20_28de_29clutchable_20spatial_20logging_0',['Clutchlog — versatile (de)clutchable spatial logging',['../index.html',1,'']]] ]; diff --git a/docs/search/related_0.html b/docs/search/related_0.html index bbe15fa..9ec0fae 100644 --- a/docs/search/related_0.html +++ b/docs/search/related_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/related_0.js b/docs/search/related_0.js index 1716d1d..9d76dc8 100644 --- a/docs/search/related_0.js +++ b/docs/search/related_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['operator_3c_3c_195',['operator<<',['../group__colors16.html#ga5a697f5ad3326ea25b139e25252b4cf7',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga379b0af834c7c561edc5c1e3a3427a33',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a826e3d3eba925608442439d6bc3a95a6',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a96849ba427feac3a2eeaa1165e3845da',1,'clutchlog::fmt::operator<<()']]] + ['operator_3c_3c_0',['operator<<',['../group__colors16.html#gac00a2f504f5308207f7a94915fe9a9c5',1,'clutchlog::fmt::operator<<()'],['../group__colors16.html#ga93d498671d8dc2e796978c4f4de51241',1,'clutchlog::fmt::operator<<()'],['../structclutchlog_1_1fmt_1_1color.html#a4860c13958d21118a564920fa78e6720',1,'clutchlog::fmt::color::operator<<()'],['../classclutchlog_1_1fmt.html#a24568f7a157d50e3075a74a619719c84',1,'clutchlog::fmt::operator<<()']]] ]; diff --git a/docs/search/search.css b/docs/search/search.css index 3cf9df9..648a792 100644 --- a/docs/search/search.css +++ b/docs/search/search.css @@ -1,98 +1,88 @@ /*---------------- Search Box */ -#FSearchBox { - float: left; -} - #MSearchBox { white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; + background: white; + border-radius: 0.65em; + box-shadow: inset 0.5px 0.5px 3px 0px #555; z-index: 102; } -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; +#MSearchBox .left { + display: inline-block; + vertical-align: middle; + height: 1.4em; } #MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; + display: inline-block; + vertical-align: middle; + height: 19px; + padding: 0 0 0 0.3em; + margin: 0; } #MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; + display: inline-block; + vertical-align: middle; + width: 7.5em; + height: 19px; + margin: 0 0.15em; + padding: 0; + line-height: 1em; border:none; - width:115px; - margin-left:20px; - padding-left:4px; color: #909090; outline: none; - font: 9pt Arial, Verdana, sans-serif; + font-family: Arial, Verdana, sans-serif; -webkit-border-radius: 0px; + border-radius: 0px; + background: none; } -#FSearchBox #MSearchField { - margin-left:15px; +@media(hover: none) { + /* to avoid zooming on iOS */ + #MSearchField { + font-size: 16px; + } } #MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; + display: inline-block; + vertical-align: middle; + width: 1.4em; + height: 1.4em; } #MSearchClose { display: none; - position: absolute; - top: 4px; + font-size: inherit; background : none; border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; + margin: 0; + padding: 0; outline: none; + } -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; +#MSearchCloseImg { + height: 1.4em; + padding: 0.3em; + margin: 0; } .MSearchBoxActive #MSearchField { color: #000000; } +#main-menu > li:last-child { + /* This
      • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + /*---------------- Search filter selection */ #MSearchSelectWindow { @@ -154,7 +144,7 @@ a.SelectItem:hover { /*---------------- Search results window */ iframe#MSearchResults { - width: 60ex; + /*width: 60ex;*/ height: 15em; } @@ -220,19 +210,21 @@ a.SRScope:focus, a.SRScope:active { span.SRScope { padding-left: 4px; + font-family: Arial, Verdana, sans-serif; } .SRPage .SRStatus { padding: 2px 5px; font-size: 8pt; font-style: italic; + font-family: Arial, Verdana, sans-serif; } .SRResult { display: none; } -DIV.searchresults { +div.searchresults { margin-left: 10px; margin-right: 10px; } diff --git a/docs/search/search.js b/docs/search/search.js index a554ab9..607f4e1 100644 --- a/docs/search/search.js +++ b/docs/search/search.js @@ -1,25 +1,26 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. - Copyright (C) 1997-2017 by Dimitri van Heesch + The MIT License (MIT) - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright (C) 1997-2020 by Dimitri van Heesch - This program 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 - GNU General Public License for more details. + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. - @licend The above is the entire license notice - for the JavaScript code in this file + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file */ function convertToId(search) { @@ -79,9 +80,10 @@ function getYPos(item) storing this instance. Is needed to be able to set timeouts. resultPath - path to use for external files */ -function SearchBox(name, resultsPath, inFrame, label) +function SearchBox(name, resultsPath, label, extension) { if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + if (!extension || extension == "") { extension = ".html"; } // ---------- Instance variables this.name = name; @@ -94,8 +96,8 @@ function SearchBox(name, resultsPath, inFrame, label) this.hideTimeout = 0; this.searchIndex = 0; this.searchActive = false; - this.insideFrame = inFrame; this.searchLabel = label; + this.extension = extension; // ----------- DOM Elements @@ -133,30 +135,14 @@ function SearchBox(name, resultsPath, inFrame, label) var searchSelectWindow = this.DOMSearchSelectWindow(); var searchField = this.DOMSearchSelect(); - if (this.insideFrame) - { - var left = getXPos(searchField); - var top = getYPos(searchField); - left += searchField.offsetWidth + 6; - top += searchField.offsetHeight; + var left = getXPos(searchField); + var top = getYPos(searchField); + top += searchField.offsetHeight; - // show search selection popup - searchSelectWindow.style.display='block'; - left -= searchSelectWindow.offsetWidth; - searchSelectWindow.style.left = left + 'px'; - searchSelectWindow.style.top = top + 'px'; - } - else - { - var left = getXPos(searchField); - var top = getYPos(searchField); - top += searchField.offsetHeight; - - // show search selection popup - searchSelectWindow.style.display='block'; - searchSelectWindow.style.left = left + 'px'; - searchSelectWindow.style.top = top + 'px'; - } + // show search selection popup + searchSelectWindow.style.display='block'; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; // stop selection hide timer if (this.hideTimeout) @@ -200,10 +186,9 @@ function SearchBox(name, resultsPath, inFrame, label) } return; } - else if (window.frames.MSearchResults.searchResults) + else { - var elem = window.frames.MSearchResults.searchResults.NavNext(0); - if (elem) elem.focus(); + window.frames.MSearchResults.postMessage("take_focus", "*"); } } else if (e.keyCode==27) // Escape out of the search field @@ -347,13 +332,13 @@ function SearchBox(name, resultsPath, inFrame, label) if (idx!=-1) { var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; resultsPageWithSearch = resultsPage+'?'+escape(searchValue); hasResultsPage = true; } else // nothing available for this search term { - resultsPage = this.resultsPath + '/nomatches.html'; + resultsPage = this.resultsPath + '/nomatches' + this.extension; resultsPageWithSearch = resultsPage; hasResultsPage = false; } @@ -364,26 +349,19 @@ function SearchBox(name, resultsPath, inFrame, label) if (domPopupSearchResultsWindow.style.display!='block') { var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; - if (this.insideFrame) - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - domPopupSearchResultsWindow.style.position = 'relative'; - domPopupSearchResultsWindow.style.display = 'block'; - var width = document.body.clientWidth - 8; // the -8 is for IE :-( - domPopupSearchResultsWindow.style.width = width + 'px'; - domPopupSearchResults.style.width = width + 'px'; - } - else - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - } + this.DOMSearchClose().style.display = 'inline-block'; + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + var maxWidth = document.body.clientWidth; + var width = 400; + if (left<10) left=10; + if (width+left+8>maxWidth) width=maxWidth-left-8; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + domPopupSearchResultsWindow.style.width = width + 'px'; } this.lastSearchValue = searchValue; @@ -439,12 +417,12 @@ function SearchResults(name) while (element && element!=parentElement) { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') + if (element.nodeName.toLowerCase() == 'div' && element.className == 'SRChildren') { return element; } - if (element.nodeName == 'DIV' && element.hasChildNodes()) + if (element.nodeName.toLowerCase() == 'div' && element.hasChildNodes()) { element = element.firstChild; } @@ -762,10 +740,15 @@ function createResults() if (searchData[e][1].length==2) // single result { srLink.setAttribute('href',searchData[e][1][1][0]); + srLink.setAttribute('onclick','parent.searchBox.CloseResultsWindow()'); if (searchData[e][1][1][1]) { srLink.setAttribute('target','_parent'); } + else + { + srLink.setAttribute('target','_blank'); + } var srScope = document.createElement('span'); setClassAttr(srScope,'SRScope'); srScope.innerHTML = searchData[e][1][1][2]; @@ -783,10 +766,15 @@ function createResults() setKeyActions(srChild,'return searchResults.NavChild(event,'+e+','+c+')'); setClassAttr(srChild,'SRScope'); srChild.setAttribute('href',searchData[e][1][c+1][0]); + srChild.setAttribute('onclick','parent.searchBox.CloseResultsWindow()'); if (searchData[e][1][c+1][1]) { srChild.setAttribute('target','_parent'); } + else + { + srChild.setAttribute('target','_blank'); + } srChild.innerHTML = searchData[e][1][c+1][2]; srChildren.appendChild(srChild); } diff --git a/docs/search/variables_0.html b/docs/search/variables_0.html index bf3eba5..fd893a6 100644 --- a/docs/search/variables_0.html +++ b/docs/search/variables_0.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_0.js b/docs/search/variables_0.js index 1ece70e..4cb16ca 100644 --- a/docs/search/variables_0.js +++ b/docs/search/variables_0.js @@ -1,18 +1,18 @@ var searchData= [ - ['_5ffilehash_5ffmts_148',['_filehash_fmts',['../classclutchlog.html#a2a334e009533744b52f01ef240a59e9d',1,'clutchlog']]], - ['_5ffilename_149',['_filename',['../classclutchlog.html#a0431616914dbbecb908a794f5b46dada',1,'clutchlog']]], - ['_5fformat_5fdump_150',['_format_dump',['../classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5',1,'clutchlog']]], - ['_5fformat_5flog_151',['_format_log',['../classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e',1,'clutchlog']]], - ['_5ffunchash_5ffmts_152',['_funchash_fmts',['../classclutchlog.html#a095e1545a2085ac623e4af19364fea7f',1,'clutchlog']]], - ['_5fin_5ffile_153',['_in_file',['../classclutchlog.html#aded03528f34d9000f618419c482c5042',1,'clutchlog']]], - ['_5fin_5ffunc_154',['_in_func',['../classclutchlog.html#a130c4f12eacbd2028102838fe16b734e',1,'clutchlog']]], - ['_5fin_5fline_155',['_in_line',['../classclutchlog.html#a41757198b29862832a14472a9e5e24c6',1,'clutchlog']]], - ['_5flevel_5ffmt_156',['_level_fmt',['../classclutchlog.html#ab805ac5c33885459f9f752518a4aa735',1,'clutchlog']]], - ['_5flevel_5fshort_157',['_level_short',['../classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae',1,'clutchlog']]], - ['_5flevel_5fword_158',['_level_word',['../classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f',1,'clutchlog']]], - ['_5fout_159',['_out',['../classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167',1,'clutchlog']]], - ['_5fstage_160',['_stage',['../classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993',1,'clutchlog']]], - ['_5fstrip_5fcalls_161',['_strip_calls',['../classclutchlog.html#a356df86455409193792b6ed550dfd09e',1,'clutchlog']]], - ['_5fword_5flevel_162',['_word_level',['../classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888',1,'clutchlog']]] + ['_5ffilehash_5ffmts_0',['_filehash_fmts',['../classclutchlog.html#a2a334e009533744b52f01ef240a59e9d',1,'clutchlog']]], + ['_5ffilename_1',['_filename',['../classclutchlog.html#a0431616914dbbecb908a794f5b46dada',1,'clutchlog']]], + ['_5fformat_5fdump_2',['_format_dump',['../classclutchlog.html#a5f4ddb57ce42e8be86a7c7d269f7bae5',1,'clutchlog']]], + ['_5fformat_5flog_3',['_format_log',['../classclutchlog.html#a7c6e3fc082bc6f55d50131ed2b32e81e',1,'clutchlog']]], + ['_5ffunchash_5ffmts_4',['_funchash_fmts',['../classclutchlog.html#a095e1545a2085ac623e4af19364fea7f',1,'clutchlog']]], + ['_5fin_5ffile_5',['_in_file',['../classclutchlog.html#aded03528f34d9000f618419c482c5042',1,'clutchlog']]], + ['_5fin_5ffunc_6',['_in_func',['../classclutchlog.html#a130c4f12eacbd2028102838fe16b734e',1,'clutchlog']]], + ['_5fin_5fline_7',['_in_line',['../classclutchlog.html#a41757198b29862832a14472a9e5e24c6',1,'clutchlog']]], + ['_5flevel_5ffmt_8',['_level_fmt',['../classclutchlog.html#ab805ac5c33885459f9f752518a4aa735',1,'clutchlog']]], + ['_5flevel_5fshort_9',['_level_short',['../classclutchlog.html#a08e8a817a75a4e9f0159231c941e0dae',1,'clutchlog']]], + ['_5flevel_5fword_10',['_level_word',['../classclutchlog.html#ab1c377a376e6772fe1746ff7147c125f',1,'clutchlog']]], + ['_5fout_11',['_out',['../classclutchlog.html#a1896f6c4b8597e3e76ff93970bd85167',1,'clutchlog']]], + ['_5fstage_12',['_stage',['../classclutchlog.html#aeb60684c89bcef5aa9273075c21cc993',1,'clutchlog']]], + ['_5fstrip_5fcalls_13',['_strip_calls',['../classclutchlog.html#a356df86455409193792b6ed550dfd09e',1,'clutchlog']]], + ['_5fword_5flevel_14',['_word_level',['../classclutchlog.html#abd4625bf211bfbaa30d9c126fa3d7888',1,'clutchlog']]] ]; diff --git a/docs/search/variables_1.html b/docs/search/variables_1.html index 49fe59a..5f8e440 100644 --- a/docs/search/variables_1.html +++ b/docs/search/variables_1.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_1.js b/docs/search/variables_1.js index 9c562a3..5979fe9 100644 --- a/docs/search/variables_1.js +++ b/docs/search/variables_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['back_163',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], - ['back_5f16m_164',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], - ['back_5f256_165',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]] + ['back_0',['back',['../group__colors16.html#ga86696b20e5b31c96ba592926efb324f3',1,'clutchlog::fmt']]], + ['back_5f16m_1',['back_16M',['../group__colors256__16_m.html#gaa2fcbb402dc2426d3720b8bc78a80ec0',1,'clutchlog::fmt']]], + ['back_5f256_2',['back_256',['../group__colors256__16_m.html#ga1d687af385957846034568c3a62d4ef0',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_2.html b/docs/search/variables_2.html index 0c8a18c..77a7f48 100644 --- a/docs/search/variables_2.html +++ b/docs/search/variables_2.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_2.js b/docs/search/variables_2.js index 51ce6d8..e3848a0 100644 --- a/docs/search/variables_2.js +++ b/docs/search/variables_2.js @@ -1,11 +1,11 @@ var searchData= [ - ['default_5fdepth_5fmark_166',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], - ['default_5fformat_167',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], - ['default_5fhfill_5fchar_168',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], - ['default_5fhfill_5fmax_169',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], - ['default_5fhfill_5fmin_170',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], - ['default_5fstrip_5fcalls_171',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], - ['dump_5fdefault_5fformat_172',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], - ['dump_5fdefault_5fsep_173',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] + ['default_5fdepth_5fmark_0',['default_depth_mark',['../classclutchlog.html#a229fd61519f1245282440120f2d45fb5',1,'clutchlog']]], + ['default_5fformat_1',['default_format',['../classclutchlog.html#a0c4ac57601e6f8d146fd5cc060968ecc',1,'clutchlog']]], + ['default_5fhfill_5fchar_2',['default_hfill_char',['../classclutchlog.html#a76eb34537b634aadb75e255f7887eeb6',1,'clutchlog']]], + ['default_5fhfill_5fmax_3',['default_hfill_max',['../classclutchlog.html#ac95630bfe9cf547d2b7c4b3430eaedc1',1,'clutchlog']]], + ['default_5fhfill_5fmin_4',['default_hfill_min',['../classclutchlog.html#a5a9a98c3528117223ceff22bc6bee5f7',1,'clutchlog']]], + ['default_5fstrip_5fcalls_5',['default_strip_calls',['../classclutchlog.html#a1a8cb6411726133208f5a2f2cb42d468',1,'clutchlog']]], + ['dump_5fdefault_5fformat_6',['dump_default_format',['../classclutchlog.html#ace879554298e6e6e36dafef330c27be8',1,'clutchlog']]], + ['dump_5fdefault_5fsep_7',['dump_default_sep',['../classclutchlog.html#af898bffe23b125245e338d7495c76d45',1,'clutchlog']]] ]; diff --git a/docs/search/variables_3.html b/docs/search/variables_3.html index 19a31fc..3ee62ba 100644 --- a/docs/search/variables_3.html +++ b/docs/search/variables_3.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_3.js b/docs/search/variables_3.js index b61972b..e57bf13 100644 --- a/docs/search/variables_3.js +++ b/docs/search/variables_3.js @@ -1,6 +1,6 @@ var searchData= [ - ['fore_174',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], - ['fore_5f16m_175',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], - ['fore_5f256_176',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]] + ['fore_0',['fore',['../group__colors16.html#ga8307a848fcf9ed929435b3e1f2b53401',1,'clutchlog::fmt']]], + ['fore_5f16m_1',['fore_16M',['../group__colors256__16_m.html#ga626c99eb11d1718d7a2a8bb3f079e6de',1,'clutchlog::fmt']]], + ['fore_5f256_2',['fore_256',['../group__colors256__16_m.html#gad98fbe84ef338ded8425d56955825a2c',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_4.html b/docs/search/variables_4.html index bdc37be..640713f 100644 --- a/docs/search/variables_4.html +++ b/docs/search/variables_4.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_4.js b/docs/search/variables_4.js index 0968584..b619a44 100644 --- a/docs/search/variables_4.js +++ b/docs/search/variables_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['index_177',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]] + ['index_0',['index',['../structclutchlog_1_1fmt_1_1color__256.html#a8e0b13d6bad87c83c3465524a5d33988',1,'clutchlog::fmt::color_256']]] ]; diff --git a/docs/search/variables_5.html b/docs/search/variables_5.html index 6aa2249..7b2ba97 100644 --- a/docs/search/variables_5.html +++ b/docs/search/variables_5.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_5.js b/docs/search/variables_5.js index d8a2af2..86c2ec6 100644 --- a/docs/search/variables_5.js +++ b/docs/search/variables_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['matches_178',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], - ['mode_179',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] + ['matches_0',['matches',['../structclutchlog_1_1scope__t.html#ae6c0e4ed20db797124ed1e5faa033ad9',1,'clutchlog::scope_t']]], + ['mode_1',['mode',['../classclutchlog_1_1fmt.html#a0aa57cdd56ccc79c7750921ab534b205',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_6.html b/docs/search/variables_6.html index ce4a906..fb1de8f 100644 --- a/docs/search/variables_6.html +++ b/docs/search/variables_6.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_6.js b/docs/search/variables_6.js index 7fb85fc..b360764 100644 --- a/docs/search/variables_6.js +++ b/docs/search/variables_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['red_180',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]] + ['red_0',['red',['../structclutchlog_1_1fmt_1_1color__16_m.html#a19e1517a9afb75a4e6224f718ed11c61',1,'clutchlog::fmt::color_16M']]] ]; diff --git a/docs/search/variables_7.html b/docs/search/variables_7.html index 39ffd47..cf8dcf4 100644 --- a/docs/search/variables_7.html +++ b/docs/search/variables_7.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_7.js b/docs/search/variables_7.js index f18253a..cc655a1 100644 --- a/docs/search/variables_7.js +++ b/docs/search/variables_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['stage_181',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], - ['style_182',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt']]] + ['stage_0',['stage',['../structclutchlog_1_1scope__t.html#adcca6846ff90d436c61861db85917744',1,'clutchlog::scope_t']]], + ['style_1',['style',['../classclutchlog_1_1fmt.html#a2bb0fde65fcd264393e102314dd1610b',1,'clutchlog::fmt']]] ]; diff --git a/docs/search/variables_8.html b/docs/search/variables_8.html index 37a2edd..88cbb01 100644 --- a/docs/search/variables_8.html +++ b/docs/search/variables_8.html @@ -1,7 +1,8 @@ - + + - + @@ -10,21 +11,27 @@
        Loading...
        - +
        Searching...
        No Matches
        - +
        diff --git a/docs/search/variables_8.js b/docs/search/variables_8.js index 2260ac2..fb13f9b 100644 --- a/docs/search/variables_8.js +++ b/docs/search/variables_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['there_183',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], - ['type_184',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]] + ['there_0',['there',['../structclutchlog_1_1scope__t.html#a7918e55cd3bac1bd30c69b8c711387ff',1,'clutchlog::scope_t']]], + ['type_1',['type',['../structclutchlog_1_1fmt_1_1color.html#a3fd18c290567bd5c4971663a1aed12ae',1,'clutchlog::fmt::color']]] ]; diff --git a/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html b/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html index 7b185bf..baf92c8 100644 --- a/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html +++ b/docs/structclutchlog_1_1fmt_1_1bg__16_m-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
        - + - @@ -36,21 +35,22 @@
        -
        clutchlog -  0.16 +
        +
        clutchlog 0.17
        - + +/* @license-end */ +
      • @@ -64,7 +64,7 @@ $(function() {
        @@ -84,37 +84,34 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__16_m.htm
    -
    -
    clutchlog::fmt::bg_16M Member List
    +
    clutchlog::fmt::bg_16M Member List

    This is the complete list of members for clutchlog::fmt::bg_16M, including all inherited members.

    - + - + - + - + - + - + - + - +
    bg_16M()clutchlog::fmt::bg_16Minline
    bg_16M(short r, short g, short b)clutchlog::fmt::bg_16Minline
    bg_16M(short r, short g, short b)clutchlog::fmt::bg_16Minline
    bg_16M(const std::string &srgb)clutchlog::fmt::bg_16Minline
    bg_16M(const bg &)clutchlog::fmt::bg_16Minline
    bg_16M(const bg &)clutchlog::fmt::bg_16Minline
    blue (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color_16M(ground t)clutchlog::fmt::color_16Minline
    color_16M(ground t, short r, short g, short b)clutchlog::fmt::color_16Minline
    color_16M(ground t, short r, short g, short b)clutchlog::fmt::color_16Minline
    color_16M(ground t, const std::string &srgb)clutchlog::fmt::color_16Minline
    green (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    green (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    ground enum nameclutchlog::fmt::color
    is_set() constclutchlog::fmt::color_16Minlinevirtual
    is_set() constclutchlog::fmt::color_16Minlinevirtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_16Minlinevirtual
    print_on(std::ostream &os) constclutchlog::fmt::color_16Minlinevirtual
    redclutchlog::fmt::color_16M
    typeclutchlog::fmt::color
    typeclutchlog::fmt::color
    diff --git a/docs/structclutchlog_1_1fmt_1_1bg__16_m.html b/docs/structclutchlog_1_1fmt_1_1bg__16_m.html index 22a9e70..97d3333 100644 --- a/docs/structclutchlog_1_1fmt_1_1bg__16_m.html +++ b/docs/structclutchlog_1_1fmt_1_1bg__16_m.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt::bg_16M Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -87,8 +87,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__16_m.htm -
    -
    clutchlog::fmt::bg_16M Struct Reference
    +
    clutchlog::fmt::bg_16M Struct Reference
    @@ -111,15 +110,14 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__16_m.htm
    [legend]

    Detailed Description

    -

    background in 256-colors mode.

    +

    background in 256-colors mode.

    -

    Definition at line 677 of file clutchlog.h.

    +

    Definition at line 678 of file clutchlog.h.

    - - - + + @@ -140,49 +138,79 @@ Public Member Functions - - + + - - - + + + + + + + + +

    +

    Public Member Functions

    bg_16M ()
     Empty constructor: no color.
     bg_16M ()
     Empty constructor: no color. More...
     
     bg_16M (short r, short g, short b)
     Numeric triplet constructor. More...
     color_16M (ground t, const std::string &srgb)
     Hex triplet string constructor. More...
     
    -bool is_set () const
     Returns true if the underying representation encodes an existing color.
    bool is_set () const
     Returns true if the underying representation encodes an existing color. More...
     
    -std::ostream & print_on (std::ostream &os) const
     Print the color RGB triplet on the given stream.
     
    std::ostream & print_on (std::ostream &os) const
     Print the color RGB triplet on the given stream. More...
     
    - Public Member Functions inherited from clutchlog::fmt::color
     color (ansi a, ground g)
     Constructor. More...
     
    virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color. More...
     
    virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream. More...
     
    - - + - + - + - + - - +

    +

    Additional Inherited Members

    - Public Attributes inherited from clutchlog::fmt::color_16M
    short red
     The encoded RGB indices. More...
     
    -short green
    short green
     
    -short blue
    short blue
     
    - Public Attributes inherited from clutchlog::fmt::color
    -ansi mode
    ansi mode
     
    -enum clutchlog::fmt::color::ground type
    +enum clutchlog::fmt::color::ground type
     Type of color (foreground or background).
     
    - Public Types inherited from clutchlog::fmt::color
    enum  ground { fore = 38, -back = 48 +
    enum class  ground { fore = 38 +, back = 48 }
     Codes for representing foreground or background.
     Codes for representing foreground or background. More...
     

    Constructor & Destructor Documentation

    - -

    ◆ bg_16M() [1/3]

    + +

    ◆ bg_16M() [1/4]

    + +
    +
    + + + + + +
    + + + + + + + +
    clutchlog::fmt::bg_16M::bg_16M ()
    +
    +inline
    +
    + +

    Empty constructor: no color.

    + +

    Definition at line 680 of file clutchlog.h.

    + +
    +
    + +

    ◆ bg_16M() [2/4]

    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,33 +84,30 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__256.html
    -
    -
    clutchlog::fmt::bg_256 Member List
    +
    clutchlog::fmt::bg_256 Member List

    This is the complete list of members for clutchlog::fmt::bg_256, including all inherited members.

    - + - + - + - + - - - + + +
    bg_256()clutchlog::fmt::bg_256inline
    bg_256(const short b)clutchlog::fmt::bg_256inline
    bg_256(const short b)clutchlog::fmt::bg_256inline
    bg_256(const bg &)clutchlog::fmt::bg_256inline
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color_256(ground t)clutchlog::fmt::color_256inline
    color_256(ground t, const short i)clutchlog::fmt::color_256inline
    color_256(ground t, const short i)clutchlog::fmt::color_256inline
    ground enum nameclutchlog::fmt::color
    indexclutchlog::fmt::color_256
    indexclutchlog::fmt::color_256
    is_set() constclutchlog::fmt::color_256inlinevirtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_256inlinevirtual
    typeclutchlog::fmt::color
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_256inlinevirtual
    typeclutchlog::fmt::color
    diff --git a/docs/structclutchlog_1_1fmt_1_1bg__256.html b/docs/structclutchlog_1_1fmt_1_1bg__256.html index de835a5..1f9d1e8 100644 --- a/docs/structclutchlog_1_1fmt_1_1bg__256.html +++ b/docs/structclutchlog_1_1fmt_1_1bg__256.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt::bg_256 Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -87,8 +87,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__256.html -
    -
    clutchlog::fmt::bg_256 Struct Reference
    +
    clutchlog::fmt::bg_256 Struct Reference
    @@ -111,15 +110,14 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1bg__256.html
    [legend]

    Detailed Description

    -

    Background in 256-colors mode.

    +

    Background in 256-colors mode.

    -

    Definition at line 569 of file clutchlog.h.

    +

    Definition at line 570 of file clutchlog.h.

    - - - + + @@ -134,43 +132,75 @@ Public Member Functions - - + + - - - + + + + + + + + +

    +

    Public Member Functions

    bg_256 ()
     Empty constructor: no color.
     bg_256 ()
     Empty constructor: no color. More...
     
     bg_256 (const short b)
     Constructor. More...
     color_256 (ground t, const short i)
     Constructor. More...
     
    -bool is_set () const
     Returns true if the underying representation encodes an existing color.
    bool is_set () const
     Returns true if the underying representation encodes an existing color. More...
     
    -std::ostream & print_on (std::ostream &os) const
     Print the color index on the given stream.
     
    std::ostream & print_on (std::ostream &os) const
     Print the color index on the given stream. More...
     
    - Public Member Functions inherited from clutchlog::fmt::color
     color (ansi a, ground g)
     Constructor. More...
     
    virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color. More...
     
    virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream. More...
     
    - - + - + - - +

    +

    Additional Inherited Members

    - Public Attributes inherited from clutchlog::fmt::color_256
    short index
     The encoded color index in 4-bits ANSI. More...
     
    - Public Attributes inherited from clutchlog::fmt::color
    -ansi mode
    ansi mode
     
    -enum clutchlog::fmt::color::ground type
    +enum clutchlog::fmt::color::ground type
     Type of color (foreground or background).
     
    - Public Types inherited from clutchlog::fmt::color
    enum  ground { fore = 38, -back = 48 +
    enum class  ground { fore = 38 +, back = 48 }
     Codes for representing foreground or background.
     Codes for representing foreground or background. More...
     

    Constructor & Destructor Documentation

    - -

    ◆ bg_256() [1/2]

    + +

    ◆ bg_256() [1/3]

    + +
    +
    + + + + + +
    + + + + + + + +
    clutchlog::fmt::bg_256::bg_256 ()
    +
    +inline
    +
    + +

    Empty constructor: no color.

    + +

    Definition at line 572 of file clutchlog.h.

    + +
    +
    + +

    ◆ bg_256() [2/3]

    @@ -201,12 +231,12 @@ enum Definition at line 576 of file clutchlog.h.

    +

    Definition at line 577 of file clutchlog.h.

    - -

    ◆ bg_256() [2/2]

    + +

    ◆ bg_256() [3/3]

    @@ -232,7 +262,7 @@ enum
    Warning
    Only encodes "no color", whatever is passed.
    -

    Definition at line 581 of file clutchlog.h.

    +

    Definition at line 582 of file clutchlog.h.

    @@ -245,9 +275,7 @@ enum
    diff --git a/docs/structclutchlog_1_1fmt_1_1color-members.html b/docs/structclutchlog_1_1fmt_1_1color-members.html index 8ffbea5..463b096 100644 --- a/docs/structclutchlog_1_1fmt_1_1color-members.html +++ b/docs/structclutchlog_1_1fmt_1_1color-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,28 +84,25 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color.html',
    -
    -
    clutchlog::fmt::color Member List
    +
    clutchlog::fmt::color Member List

    This is the complete list of members for clutchlog::fmt::color, including all inherited members.

    - + - - - + + +
    color(ansi a, ground g)clutchlog::fmt::colorinline
    ground enum nameclutchlog::fmt::color
    ground enum nameclutchlog::fmt::color
    is_set() const =0clutchlog::fmt::colorpure virtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    operator<<(std::ostream &os, const color &c)clutchlog::fmt::colorfriend
    print_on(std::ostream &os) const =0clutchlog::fmt::colorpure virtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    operator<<clutchlog::fmt::colorfriend
    print_on(std::ostream &os) const =0clutchlog::fmt::colorpure virtual
    typeclutchlog::fmt::color
    diff --git a/docs/structclutchlog_1_1fmt_1_1color.html b/docs/structclutchlog_1_1fmt_1_1color.html index b66fd1c..1213ef0 100644 --- a/docs/structclutchlog_1_1fmt_1_1color.html +++ b/docs/structclutchlog_1_1fmt_1_1color.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt::color Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -90,8 +90,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color.html', Public Types | Friends | List of all members -
    -
    clutchlog::fmt::color Struct Referenceabstract
    +
    clutchlog::fmt::color Struct Referenceabstract
    @@ -107,51 +106,47 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color.html',
    [legend]

    Detailed Description

    -

    Interface class for colors representation.

    +

    Interface class for colors representation.

    -

    Definition at line 483 of file clutchlog.h.

    +

    Definition at line 484 of file clutchlog.h.

    - - - + + - - - + + +

    +

    Public Member Functions

     color (ansi a, ground g)
     Constructor. More...
     
    -virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color.
    virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color. More...
     
    -virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream.
     
    virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream. More...
     
    - - + - +

    +

    Public Attributes

    -ansi mode
    ansi mode
     
    -enum clutchlog::fmt::color::ground type
    +enum clutchlog::fmt::color::ground type
     Type of color (foreground or background).
     
    - - - +

    +

    Public Types

    enum  ground { fore = 38, -back = 48 +
    enum class  ground { fore = 38 +, back = 48 }
     Codes for representing foreground or background.
     Codes for representing foreground or background. More...
     
    - - - - + + +

    +

    Friends

    -std::ostream & operator<< (std::ostream &os, const color &c)
     Print the actually encoded escaped color sequence on the given stream.
     
    std::ostream & operator<< (std::ostream &os, const color &c)
     Print the actually encoded escaped color sequence on the given stream. More...
     

    Constructor & Destructor Documentation

    - +

    ◆ color()

    @@ -194,7 +189,152 @@ std::ostream & Definition at line 497 of file clutchlog.h.

    +

    Definition at line 498 of file clutchlog.h.

    + +
    +
    +

    Member Function Documentation

    + +

    ◆ is_set()

    + +
    +
    + + + + + +
    + + + + + + + +
    virtual bool clutchlog::fmt::color::is_set () const
    +
    +pure virtual
    +
    + +

    Should return true if the underying representation encodes an existing color.

    + +

    Implemented in clutchlog::fmt::color_256, and clutchlog::fmt::color_16M.

    + +
    +
    + +

    ◆ print_on()

    + +
    +
    + + + + + +
    + + + + + + + + +
    virtual std::ostream & clutchlog::fmt::color::print_on (std::ostream & os) const
    +
    +pure virtual
    +
    + +

    Should print the underlying representation on the given stream.

    + +

    Implemented in clutchlog::fmt::color_256, and clutchlog::fmt::color_16M.

    + +
    +
    +

    Friends And Related Function Documentation

    + +

    ◆ operator<<

    + +
    +
    + + + + + +
    + + + + + + + + + + + + + + + + + + +
    std::ostream & operator<< (std::ostream & os,
    const colorc 
    )
    +
    +friend
    +
    + +

    Print the actually encoded escaped color sequence on the given stream.

    + +

    Definition at line 507 of file clutchlog.h.

    + +
    +
    +

    Member Data Documentation

    + +

    ◆ mode

    + +
    +
    + + + + +
    ansi clutchlog::fmt::color::mode
    +
    + +

    Definition at line 485 of file clutchlog.h.

    + +
    +
    +

    Member Enumeration Documentation

    + +

    ◆ ground

    + +
    +
    + + + + + +
    + + + + +
    enum class clutchlog::fmt::color::ground
    +
    +strong
    +
    + +

    Codes for representing foreground or background.

    + +

    Definition at line 488 of file clutchlog.h.

    @@ -207,9 +347,7 @@ std::ostream &  diff --git a/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html b/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html index c3d2dc3..42dcda5 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html +++ b/docs/structclutchlog_1_1fmt_1_1color__16_m-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,33 +84,30 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__16_m.
    -
    -
    clutchlog::fmt::color_16M Member List
    +
    clutchlog::fmt::color_16M Member List

    This is the complete list of members for clutchlog::fmt::color_16M, including all inherited members.

    - + - + - + - + - + - +
    blue (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color_16M(ground t)clutchlog::fmt::color_16Minline
    color_16M(ground t, short r, short g, short b)clutchlog::fmt::color_16Minline
    color_16M(ground t, short r, short g, short b)clutchlog::fmt::color_16Minline
    color_16M(ground t, const std::string &srgb)clutchlog::fmt::color_16Minline
    green (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    green (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    ground enum nameclutchlog::fmt::color
    is_set() constclutchlog::fmt::color_16Minlinevirtual
    is_set() constclutchlog::fmt::color_16Minlinevirtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_16Minlinevirtual
    print_on(std::ostream &os) constclutchlog::fmt::color_16Minlinevirtual
    redclutchlog::fmt::color_16M
    typeclutchlog::fmt::color
    typeclutchlog::fmt::color
    diff --git a/docs/structclutchlog_1_1fmt_1_1color__16_m.html b/docs/structclutchlog_1_1fmt_1_1color__16_m.html index ddb2451..77bf878 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__16_m.html +++ b/docs/structclutchlog_1_1fmt_1_1color__16_m.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt::color_16M Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -88,8 +88,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__16_m. Public Member Functions | Public Attributes | List of all members -
    -
    clutchlog::fmt::color_16M Struct Reference
    +
    clutchlog::fmt::color_16M Struct Reference
    @@ -112,11 +111,11 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__16_m.
    [legend]

    Detailed Description

    -

    Abstract base class for 16M colors objects (24-bits ANSI).

    +

    Abstract base class for 16M colors objects (24-bits ANSI).

    -

    Definition at line 586 of file clutchlog.h.

    +

    Definition at line 587 of file clutchlog.h.

    - @@ -127,50 +126,51 @@ Public Member Functions - - + + - - - + + + + + + + + +

    +

    Public Member Functions

     color_16M (ground t)
     Constructor. More...
     color_16M (ground t, const std::string &srgb)
     Hex triplet string constructor. More...
     
    -bool is_set () const
     Returns true if the underying representation encodes an existing color.
    bool is_set () const
     Returns true if the underying representation encodes an existing color. More...
     
    -std::ostream & print_on (std::ostream &os) const
     Print the color RGB triplet on the given stream.
     
    std::ostream & print_on (std::ostream &os) const
     Print the color RGB triplet on the given stream. More...
     
    - Public Member Functions inherited from clutchlog::fmt::color
     color (ansi a, ground g)
     Constructor. More...
     
    virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color. More...
     
    virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream. More...
     
    - - + - + - + - +

    +

    Public Attributes

    short red
     The encoded RGB indices. More...
     
    -short green
    short green
     
    -short blue
    short blue
     
    - Public Attributes inherited from clutchlog::fmt::color
    -ansi mode
    ansi mode
     
    -enum clutchlog::fmt::color::ground type
    +enum clutchlog::fmt::color::ground type
     Type of color (foreground or background).
     
    - - - +

    +

    Additional Inherited Members

    - Public Types inherited from clutchlog::fmt::color
    enum  ground { fore = 38, -back = 48 +
    enum class  ground { fore = 38 +, back = 48 }
     Codes for representing foreground or background.
     Codes for representing foreground or background. More...
     

    Constructor & Destructor Documentation

    - +

    ◆ color_16M() [1/3]

    @@ -202,11 +202,11 @@ Additional Inherited Members -

    Definition at line 595 of file clutchlog.h.

    +

    Definition at line 596 of file clutchlog.h.

    - +

    ◆ color_16M() [2/3]

    @@ -263,11 +263,11 @@ Additional Inherited Members -

    Definition at line 604 of file clutchlog.h.

    +

    Definition at line 605 of file clutchlog.h.

    - +

    ◆ color_16M() [3/3]

    @@ -311,14 +311,82 @@ Additional Inherited Members -

    Definition at line 614 of file clutchlog.h.

    +

    Definition at line 615 of file clutchlog.h.

    -

    References red.

    +

    References red.

    + +
    + +

    Member Function Documentation

    + +

    ◆ is_set()

    + +
    +
    + + + + + +
    + + + + + + + +
    bool clutchlog::fmt::color_16M::is_set () const
    +
    +inlinevirtual
    +
    + +

    Returns true if the underying representation encodes an existing color.

    + +

    Implements clutchlog::fmt::color.

    + +

    Definition at line 637 of file clutchlog.h.

    + +

    References red.

    + +
    +
    + +

    ◆ print_on()

    + +
    +
    + + + + + +
    + + + + + + + + +
    std::ostream & clutchlog::fmt::color_16M::print_on (std::ostream & os) const
    +
    +inlinevirtual
    +
    + +

    Print the color RGB triplet on the given stream.

    + +

    Implements clutchlog::fmt::color.

    + +

    Definition at line 640 of file clutchlog.h.

    + +

    References red.

    Member Data Documentation

    - +

    ◆ red

    @@ -331,11 +399,43 @@ Additional Inherited Members

    The encoded RGB indices.

    -

    "No color" is encoded as -1.

    +

    "No color" is encoded as -1.

    -

    Definition at line 590 of file clutchlog.h.

    +

    Definition at line 591 of file clutchlog.h.

    -

    Referenced by color_16M(), is_set(), and print_on().

    +

    Referenced by color_16M(), is_set(), and print_on().

    + +
    + + +

    ◆ green

    + +
    +
    + + + + +
    short clutchlog::fmt::color_16M::green
    +
    + +

    Definition at line 591 of file clutchlog.h.

    + +
    +
    + +

    ◆ blue

    + +
    +
    + + + + +
    short clutchlog::fmt::color_16M::blue
    +
    + +

    Definition at line 591 of file clutchlog.h.

    @@ -348,9 +448,7 @@ Additional Inherited Members diff --git a/docs/structclutchlog_1_1fmt_1_1color__256-members.html b/docs/structclutchlog_1_1fmt_1_1color__256-members.html index ad6ae0c..f1f7902 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__256-members.html +++ b/docs/structclutchlog_1_1fmt_1_1color__256-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,30 +84,27 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__256.h
    -
    -
    clutchlog::fmt::color_256 Member List
    +
    clutchlog::fmt::color_256 Member List

    This is the complete list of members for clutchlog::fmt::color_256, including all inherited members.

    - + - + - + - +
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color_256(ground t)clutchlog::fmt::color_256inline
    color_256(ground t)clutchlog::fmt::color_256inline
    color_256(ground t, const short i)clutchlog::fmt::color_256inline
    ground enum nameclutchlog::fmt::color
    ground enum nameclutchlog::fmt::color
    indexclutchlog::fmt::color_256
    is_set() constclutchlog::fmt::color_256inlinevirtual
    is_set() constclutchlog::fmt::color_256inlinevirtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_256inlinevirtual
    print_on(std::ostream &os) constclutchlog::fmt::color_256inlinevirtual
    typeclutchlog::fmt::color
    diff --git a/docs/structclutchlog_1_1fmt_1_1color__256.html b/docs/structclutchlog_1_1fmt_1_1color__256.html index c52ec60..78f460c 100644 --- a/docs/structclutchlog_1_1fmt_1_1color__256.html +++ b/docs/structclutchlog_1_1fmt_1_1color__256.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt::color_256 Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -88,8 +88,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__256.h Public Member Functions | Public Attributes | List of all members -
    -
    clutchlog::fmt::color_256 Struct Reference
    +
    clutchlog::fmt::color_256 Struct Reference
    @@ -112,11 +111,11 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1color__256.h
    [legend]

    Detailed Description

    -

    Abstract base class for 256 colors objects (8-bits ANSI).

    +

    Abstract base class for 256 colors objects (8-bits ANSI).

    -

    Definition at line 522 of file clutchlog.h.

    +

    Definition at line 523 of file clutchlog.h.

    - @@ -124,44 +123,47 @@ Public Member Functions - - + + - - - + + + + + + + + +

    +

    Public Member Functions

     color_256 (ground t)
     Constructor. More...
     color_256 (ground t, const short i)
     Constructor. More...
     
    -bool is_set () const
     Returns true if the underying representation encodes an existing color.
    bool is_set () const
     Returns true if the underying representation encodes an existing color. More...
     
    -std::ostream & print_on (std::ostream &os) const
     Print the color index on the given stream.
     
    std::ostream & print_on (std::ostream &os) const
     Print the color index on the given stream. More...
     
    - Public Member Functions inherited from clutchlog::fmt::color
     color (ansi a, ground g)
     Constructor. More...
     
    virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color. More...
     
    virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream. More...
     
    - - + - +

    +

    Public Attributes

    short index
     The encoded color index in 4-bits ANSI. More...
     
    - Public Attributes inherited from clutchlog::fmt::color
    -ansi mode
    ansi mode
     
    -enum clutchlog::fmt::color::ground type
    +enum clutchlog::fmt::color::ground type
     Type of color (foreground or background).
     
    - - - +

    +

    Additional Inherited Members

    - Public Types inherited from clutchlog::fmt::color
    enum  ground { fore = 38, -back = 48 +
    enum class  ground { fore = 38 +, back = 48 }
     Codes for representing foreground or background.
     Codes for representing foreground or background. More...
     

    Constructor & Destructor Documentation

    - +

    ◆ color_256() [1/2]

    @@ -193,11 +195,11 @@ Additional Inherited Members -

    Definition at line 531 of file clutchlog.h.

    +

    Definition at line 532 of file clutchlog.h.

    - +

    ◆ color_256() [2/2]

    @@ -240,12 +242,80 @@ Additional Inherited Members -

    Definition at line 538 of file clutchlog.h.

    +

    Definition at line 539 of file clutchlog.h.

    + +
    + +

    Member Function Documentation

    + +

    ◆ is_set()

    + +
    +
    + + + + + +
    + + + + + + + +
    bool clutchlog::fmt::color_256::is_set () const
    +
    +inlinevirtual
    +
    + +

    Returns true if the underying representation encodes an existing color.

    + +

    Implements clutchlog::fmt::color.

    + +

    Definition at line 542 of file clutchlog.h.

    + +

    References index.

    + +
    +
    + +

    ◆ print_on()

    + +
    +
    + + + + + +
    + + + + + + + + +
    std::ostream & clutchlog::fmt::color_256::print_on (std::ostream & os) const
    +
    +inlinevirtual
    +
    + +

    Print the color index on the given stream.

    + +

    Implements clutchlog::fmt::color.

    + +

    Definition at line 545 of file clutchlog.h.

    + +

    References index.

    Member Data Documentation

    - +

    ◆ index

    @@ -258,11 +328,11 @@ Additional Inherited Members

    The encoded color index in 4-bits ANSI.

    -

    "No color" is encoded as -1.

    +

    "No color" is encoded as -1.

    -

    Definition at line 526 of file clutchlog.h.

    +

    Definition at line 527 of file clutchlog.h.

    -

    Referenced by is_set(), and print_on().

    +

    Referenced by is_set(), and print_on().

    @@ -275,9 +345,7 @@ Additional Inherited Members diff --git a/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html b/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html index a2dad5d..193f0d2 100644 --- a/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html +++ b/docs/structclutchlog_1_1fmt_1_1fg__16_m-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,37 +84,34 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__16_m.htm
    -
    -
    clutchlog::fmt::fg_16M Member List
    +
    clutchlog::fmt::fg_16M Member List

    This is the complete list of members for clutchlog::fmt::fg_16M, including all inherited members.

    - + - + - + - + - + - + - + - +
    blue (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color_16M(ground t)clutchlog::fmt::color_16Minline
    color_16M(ground t, short r, short g, short b)clutchlog::fmt::color_16Minline
    color_16M(ground t, short r, short g, short b)clutchlog::fmt::color_16Minline
    color_16M(ground t, const std::string &srgb)clutchlog::fmt::color_16Minline
    fg_16M()clutchlog::fmt::fg_16Minline
    fg_16M()clutchlog::fmt::fg_16Minline
    fg_16M(short r, short g, short b)clutchlog::fmt::fg_16Minline
    fg_16M(const std::string &srgb)clutchlog::fmt::fg_16Minline
    fg_16M(const std::string &srgb)clutchlog::fmt::fg_16Minline
    fg_16M(const fg &)clutchlog::fmt::fg_16Minline
    green (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    green (defined in clutchlog::fmt::color_16M)clutchlog::fmt::color_16M
    ground enum nameclutchlog::fmt::color
    is_set() constclutchlog::fmt::color_16Minlinevirtual
    is_set() constclutchlog::fmt::color_16Minlinevirtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_16Minlinevirtual
    print_on(std::ostream &os) constclutchlog::fmt::color_16Minlinevirtual
    redclutchlog::fmt::color_16M
    typeclutchlog::fmt::color
    typeclutchlog::fmt::color
    diff --git a/docs/structclutchlog_1_1fmt_1_1fg__16_m.html b/docs/structclutchlog_1_1fmt_1_1fg__16_m.html index a23ddfe..890d2e0 100644 --- a/docs/structclutchlog_1_1fmt_1_1fg__16_m.html +++ b/docs/structclutchlog_1_1fmt_1_1fg__16_m.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt::fg_16M Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -87,8 +87,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__16_m.htm -
    -
    clutchlog::fmt::fg_16M Struct Reference
    +
    clutchlog::fmt::fg_16M Struct Reference
    @@ -111,15 +110,14 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__16_m.htm
    [legend]

    Detailed Description

    -

    Foreground in 256-colors mode.

    +

    Foreground in 256-colors mode.

    -

    Definition at line 647 of file clutchlog.h.

    +

    Definition at line 648 of file clutchlog.h.

    - - - + + @@ -140,49 +138,79 @@ Public Member Functions - - + + - - - + + + + + + + + +

    +

    Public Member Functions

    fg_16M ()
     Empty constructor: no color.
     fg_16M ()
     Empty constructor: no color. More...
     
     fg_16M (short r, short g, short b)
     Numeric triplet constructor. More...
     color_16M (ground t, const std::string &srgb)
     Hex triplet string constructor. More...
     
    -bool is_set () const
     Returns true if the underying representation encodes an existing color.
    bool is_set () const
     Returns true if the underying representation encodes an existing color. More...
     
    -std::ostream & print_on (std::ostream &os) const
     Print the color RGB triplet on the given stream.
     
    std::ostream & print_on (std::ostream &os) const
     Print the color RGB triplet on the given stream. More...
     
    - Public Member Functions inherited from clutchlog::fmt::color
     color (ansi a, ground g)
     Constructor. More...
     
    virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color. More...
     
    virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream. More...
     
    - - + - + - + - + - - +

    +

    Additional Inherited Members

    - Public Attributes inherited from clutchlog::fmt::color_16M
    short red
     The encoded RGB indices. More...
     
    -short green
    short green
     
    -short blue
    short blue
     
    - Public Attributes inherited from clutchlog::fmt::color
    -ansi mode
    ansi mode
     
    -enum clutchlog::fmt::color::ground type
    +enum clutchlog::fmt::color::ground type
     Type of color (foreground or background).
     
    - Public Types inherited from clutchlog::fmt::color
    enum  ground { fore = 38, -back = 48 +
    enum class  ground { fore = 38 +, back = 48 }
     Codes for representing foreground or background.
     Codes for representing foreground or background. More...
     

    Constructor & Destructor Documentation

    - -

    ◆ fg_16M() [1/3]

    + +

    ◆ fg_16M() [1/4]

    + +
    +
    + + + + + +
    + + + + + + + +
    clutchlog::fmt::fg_16M::fg_16M ()
    +
    +inline
    +
    + +

    Empty constructor: no color.

    + +

    Definition at line 650 of file clutchlog.h.

    + +
    +
    + +

    ◆ fg_16M() [2/4]

    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,33 +84,30 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__256.html
    -
    -
    clutchlog::fmt::fg_256 Member List
    +
    clutchlog::fmt::fg_256 Member List

    This is the complete list of members for clutchlog::fmt::fg_256, including all inherited members.

    - + - + - + - + - - - + + +
    color(ansi a, ground g)clutchlog::fmt::colorinline
    color_256(ground t)clutchlog::fmt::color_256inline
    color_256(ground t)clutchlog::fmt::color_256inline
    color_256(ground t, const short i)clutchlog::fmt::color_256inline
    fg_256()clutchlog::fmt::fg_256inline
    fg_256()clutchlog::fmt::fg_256inline
    fg_256(const short f)clutchlog::fmt::fg_256inline
    fg_256(const fg &)clutchlog::fmt::fg_256inline
    fg_256(const fg &)clutchlog::fmt::fg_256inline
    ground enum nameclutchlog::fmt::color
    indexclutchlog::fmt::color_256
    indexclutchlog::fmt::color_256
    is_set() constclutchlog::fmt::color_256inlinevirtual
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_256inlinevirtual
    typeclutchlog::fmt::color
    mode (defined in clutchlog::fmt::color)clutchlog::fmt::color
    print_on(std::ostream &os) constclutchlog::fmt::color_256inlinevirtual
    typeclutchlog::fmt::color
    diff --git a/docs/structclutchlog_1_1fmt_1_1fg__256.html b/docs/structclutchlog_1_1fmt_1_1fg__256.html index 1bf58d2..0eca95f 100644 --- a/docs/structclutchlog_1_1fmt_1_1fg__256.html +++ b/docs/structclutchlog_1_1fmt_1_1fg__256.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::fmt::fg_256 Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -87,8 +87,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__256.html -
    -
    clutchlog::fmt::fg_256 Struct Reference
    +
    clutchlog::fmt::fg_256 Struct Reference
    @@ -111,15 +110,14 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1fmt_1_1fg__256.html
    [legend]

    Detailed Description

    -

    Foreground in 256-colors mode.

    +

    Foreground in 256-colors mode.

    -

    Definition at line 552 of file clutchlog.h.

    +

    Definition at line 553 of file clutchlog.h.

    - - - + + @@ -134,43 +132,75 @@ Public Member Functions - - + + - - - + + + + + + + + +

    +

    Public Member Functions

    fg_256 ()
     Empty constructor: no color.
     fg_256 ()
     Empty constructor: no color. More...
     
     fg_256 (const short f)
     Constructor. More...
     color_256 (ground t, const short i)
     Constructor. More...
     
    -bool is_set () const
     Returns true if the underying representation encodes an existing color.
    bool is_set () const
     Returns true if the underying representation encodes an existing color. More...
     
    -std::ostream & print_on (std::ostream &os) const
     Print the color index on the given stream.
     
    std::ostream & print_on (std::ostream &os) const
     Print the color index on the given stream. More...
     
    - Public Member Functions inherited from clutchlog::fmt::color
     color (ansi a, ground g)
     Constructor. More...
     
    virtual bool is_set () const =0
     Should return true if the underying representation encodes an existing color. More...
     
    virtual std::ostream & print_on (std::ostream &os) const =0
     Should print the underlying representation on the given stream. More...
     
    - - + - + - - +

    +

    Additional Inherited Members

    - Public Attributes inherited from clutchlog::fmt::color_256
    short index
     The encoded color index in 4-bits ANSI. More...
     
    - Public Attributes inherited from clutchlog::fmt::color
    -ansi mode
    ansi mode
     
    -enum clutchlog::fmt::color::ground type
    +enum clutchlog::fmt::color::ground type
     Type of color (foreground or background).
     
    - Public Types inherited from clutchlog::fmt::color
    enum  ground { fore = 38, -back = 48 +
    enum class  ground { fore = 38 +, back = 48 }
     Codes for representing foreground or background.
     Codes for representing foreground or background. More...
     

    Constructor & Destructor Documentation

    - -

    ◆ fg_256() [1/2]

    + +

    ◆ fg_256() [1/3]

    + +
    +
    + + + + + +
    + + + + + + + +
    clutchlog::fmt::fg_256::fg_256 ()
    +
    +inline
    +
    + +

    Empty constructor: no color.

    + +

    Definition at line 555 of file clutchlog.h.

    + +
    +
    + +

    ◆ fg_256() [2/3]

    @@ -201,12 +231,12 @@ enum Definition at line 559 of file clutchlog.h.

    +

    Definition at line 560 of file clutchlog.h.

    - -

    ◆ fg_256() [2/2]

    + +

    ◆ fg_256() [3/3]

    @@ -232,7 +262,7 @@ enum
    Warning
    Only encodes "no color", whatever is passed.
    -

    Definition at line 564 of file clutchlog.h.

    +

    Definition at line 565 of file clutchlog.h.

    @@ -245,9 +275,7 @@ enum
    diff --git a/docs/structclutchlog_1_1scope__t-members.html b/docs/structclutchlog_1_1scope__t-members.html index d690cfe..476fd12 100644 --- a/docs/structclutchlog_1_1scope__t-members.html +++ b/docs/structclutchlog_1_1scope__t-members.html @@ -2,8 +2,8 @@ - - + + clutchlog: Member List @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,25 +84,22 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1scope__t.html','');
    -
    -
    clutchlog::scope_t Member List
    +
    clutchlog::scope_t Member List
    diff --git a/docs/structclutchlog_1_1scope__t.html b/docs/structclutchlog_1_1scope__t.html index c11b24b..db3448e 100644 --- a/docs/structclutchlog_1_1scope__t.html +++ b/docs/structclutchlog_1_1scope__t.html @@ -2,8 +2,8 @@ - - + + clutchlog: clutchlog::scope_t Struct Reference @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -88,8 +88,7 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1scope__t.html',''); Public Member Functions | Public Attributes | List of all members -
    -
    clutchlog::scope_t Struct Reference
    +
    clutchlog::scope_t Struct Reference
    @@ -98,32 +97,119 @@ $(document).ready(function(){initNavTree('structclutchlog_1_1scope__t.html','');

    #include <clutchlog.h>

    Detailed Description

    -

    Structure holding a location matching.

    +

    Structure holding a location matching.

    -

    Definition at line 1128 of file clutchlog.h.

    +

    Definition at line 1130 of file clutchlog.h.

    - - - + +

    +

    Public Member Functions

    scope_t ()
     Constructor.
     scope_t ()
     Constructor. More...
     
    - - - + + - - + + - - + +

    +

    Public Attributes

    -bool matches
     Everything is compatible.
    bool matches
     Everything is compatible. More...
     
    -level stage
     Current log level.
    level stage
     Current log level. More...
     
    -bool there
     Location is compatible.
    bool there
     Location is compatible. More...
     
    +

    Constructor & Destructor Documentation

    + +

    ◆ scope_t()

    + +
    +
    + + + + + +
    + + + + + + + +
    clutchlog::scope_t::scope_t ()
    +
    +inline
    +
    + +

    Constructor.

    + +

    Definition at line 1142 of file clutchlog.h.

    + +
    +
    +

    Member Data Documentation

    + +

    ◆ matches

    + +
    +
    + + + + +
    bool clutchlog::scope_t::matches
    +
    + +

    Everything is compatible.

    + +

    Definition at line 1132 of file clutchlog.h.

    + +

    Referenced by clutchlog::dump(), clutchlog::locate(), and clutchlog::log().

    + +
    +
    + +

    ◆ stage

    + +
    +
    + + + + +
    level clutchlog::scope_t::stage
    +
    + +

    Current log level.

    + +

    Definition at line 1134 of file clutchlog.h.

    + +

    Referenced by clutchlog::locate().

    + +
    +
    + +

    ◆ there

    + +
    +
    + + + + +
    bool clutchlog::scope_t::there
    +
    + +

    Location is compatible.

    + +

    Definition at line 1140 of file clutchlog.h.

    + +

    Referenced by clutchlog::locate().

    + +
    +

    The documentation for this struct was generated from the following file: @@ -133,9 +219,7 @@ bool 
    diff --git a/docs/svgpan.js b/docs/svgpan.js index 1cad257..2678d38 100644 --- a/docs/svgpan.js +++ b/docs/svgpan.js @@ -1,57 +1,37 @@ /* - @licstart The following is the entire license notice for the - JavaScript code in this file. + @licstart The following is the entire license notice for the JavaScript code in this file. + The code below is based on SVGPan Library 1.2 and was modified for doxygen + to support both zooming and panning via the mouse and via embedded buttons. - Copyright (C) 1997-2017 by Dimitri van Heesch + This code is licensed under the following BSD license: - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + Copyright 2009-2010 Andrea Leofreddi . All rights reserved. - This program 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 - GNU General Public License for more details. + Redistribution and use in source and binary forms, with or without modification, are + permitted provided that the following conditions are met: - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + 1. Redistributions of source code must retain the above copyright notice, this list of + conditions and the following disclaimer. - @licend The above is the entire license notice - for the JavaScript code in this file - */ -/** - * The code below is based on SVGPan Library 1.2 and was modified for doxygen - * to support both zooming and panning via the mouse and via embedded buttons. - * - * This code is licensed under the following BSD license: - * - * Copyright 2009-2010 Andrea Leofreddi . All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND - * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * The views and conclusions contained in the software and documentation are those of the - * authors and should not be interpreted as representing official policies, either expressed - * or implied, of Andrea Leofreddi. + 2. Redistributions in binary form must reproduce the above copyright notice, this list + of conditions and the following disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + The views and conclusions contained in the software and documentation are those of the + authors and should not be interpreted as representing official policies, either expressed + or implied, of Andrea Leofreddi. + + @licend The above is the entire license notice for the JavaScript code in this file */ var root = document.documentElement; diff --git a/docs/t-assert_8cpp_source.html b/docs/t-assert_8cpp_source.html index 1fc9176..c368267 100644 --- a/docs/t-assert_8cpp_source.html +++ b/docs/t-assert_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-assert.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,63 +84,61 @@ $(document).ready(function(){initNavTree('t-assert_8cpp_source.html',''); initRe
    -
    -
    t-assert.cpp
    +
    t-assert.cpp
    -
    1 #include <iostream>
    -
    2 #include <cassert>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 // Make asserts (de)clutchable.
    -
    7 #define ASSERT(...) CLUTCHFUNC(error, assert, __VA_ARGS__);
    -
    8 
    -
    9 void h()
    -
    10 {
    -
    11  CLUTCHLOG(info, "!");
    -
    12  ASSERT(true == true);
    -
    13  std::clog << "--" << std::endl;
    -
    14 }
    -
    15 
    -
    16 void g()
    -
    17 {
    -
    18  CLUTCHLOG(warning, "world");
    -
    19  ASSERT(strcmp("life","life") == 0);
    -
    20  h();
    -
    21 }
    -
    22 
    -
    23 void f()
    -
    24 {
    -
    25  CLUTCHLOG(error, "hello ");
    -
    26  ASSERT(strcmp("no more","please")!=0);
    -
    27  g();
    -
    28 }
    -
    29 
    -
    30 int main(/*const int argc, char* argv[]*/)
    -
    31 {
    -
    32  auto& log = clutchlog::logger();
    -
    33 
    -
    34  log.func("f");
    -
    35  f();
    -
    36 
    -
    37  log.func("g");
    -
    38  f();
    -
    39 
    -
    40  log.func("h");
    -
    41  f();
    -
    42 }
    +
    1#include <iostream>
    +
    2#include <cassert>
    +
    3#include <cstring>
    +
    4
    +
    5#include "../clutchlog/clutchlog.h"
    +
    6
    +
    7// Make asserts (de)clutchable.
    +
    8#define ASSERT(...) CLUTCHFUNC(error, assert, __VA_ARGS__);
    +
    9
    +
    10void h()
    +
    11{
    +
    12 CLUTCHLOG(info, "!");
    +
    13 ASSERT(true == true);
    +
    14 std::clog << "--" << std::endl;
    +
    15}
    +
    16
    +
    17void g()
    +
    18{
    +
    19 CLUTCHLOG(warning, "world");
    +
    20 ASSERT(strcmp("life","life") == 0);
    +
    21 h();
    +
    22}
    +
    23
    +
    24void f()
    +
    25{
    +
    26 CLUTCHLOG(error, "hello ");
    +
    27 ASSERT(strcmp("no more","please")!=0);
    +
    28 g();
    +
    29}
    +
    30
    +
    31int main(/*const int argc, char* argv[]*/)
    +
    32{
    +
    33 auto& log = clutchlog::logger();
    +
    34
    +
    35 log.func("f");
    +
    36 f();
    +
    37
    +
    38 log.func("g");
    +
    39 f();
    +
    40
    +
    41 log.func("h");
    +
    42 f();
    +
    43}
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    diff --git a/docs/t-color16_m_8cpp_source.html b/docs/t-color16_m_8cpp_source.html index bc24383..982de1c 100644 --- a/docs/t-color16_m_8cpp_source.html +++ b/docs/t-color16_m_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-color16M.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,70 +84,67 @@ $(document).ready(function(){initNavTree('t-color16_m_8cpp_source.html',''); ini
    -
    -
    t-color16M.cpp
    +
    t-color16M.cpp
    -
    1 #include <iostream>
    -
    2 #include <limits>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 int main(/*const int argc, char* argv[]*/)
    -
    7 {
    -
    8  using typo = clutchlog::fmt::typo;
    -
    9  // using fg = clutchlog::fmt::fg;
    -
    10  // using bg = clutchlog::fmt::bg;
    -
    11 
    -
    12  clutchlog::fmt none;
    -
    13  clutchlog::fmt end(typo::reset);
    -
    14  clutchlog::fmt note(typo::bold);
    -
    15  clutchlog::fmt info(120,255,120); // greenish
    -
    16  clutchlog::fmt warning("#ff0055", typo::bold); // magentaish
    -
    17  clutchlog::fmt error(255,100,150, typo::bold); // redish magenta
    -
    18  clutchlog::fmt critical("#ffff00", "#ff0000"); // Yellow over red.
    -
    19 
    -
    20  auto& log = clutchlog::logger();
    -
    21  log.threshold(clutchlog::level::info);
    -
    22 
    -
    23  // Change a style.
    -
    24  log.style(clutchlog::level::critical, error);
    -
    25  CLUTCHLOG(critical,"Styles demo");
    -
    26 
    -
    27  CLUTCHLOG(info,"Either using functions...");
    -
    28  std::cout << none("No style: ") << std::endl;
    -
    29  std::cout << note("NOTE: bold") << std::endl;
    -
    30  std::cout << info("INFO: green") << std::endl;
    -
    31 
    -
    32  CLUTCHLOG(info,"... or tags.");
    -
    33  std::cout << warning << "WARNING" << end << ": bold magenta" << std::endl;
    -
    34  std::cout << error << "ERROR" << end << ": bold red" << std::endl;
    -
    35  std::cout << critical << "CRITICAL" << end << ": underlined black over red background" << std::endl;
    -
    36 
    -
    37  std::ostringstream format;
    -
    38  clutchlog::fmt discreet("#888888", typo::inverse);
    -
    39  format << "{level}: "
    -
    40  << discreet("{file}") << ":"
    -
    41  << clutchlog::fmt(/*front RGB*/200,150,0, /*back RGB*/0,0,0) << "{line}" // gold yellow over black
    -
    42  << clutchlog::fmt(typo::reset) << " {msg} ! " << std::endl;
    -
    43  log.format(format.str());
    -
    44  CLUTCHLOG(critical,"After having inserted styles within a new format template");
    -
    45 }
    -
    46 
    -
    47 
    +
    1#include <iostream>
    +
    2#include <limits>
    +
    3
    +
    4#include "../clutchlog/clutchlog.h"
    +
    5
    +
    6int main(/*const int argc, char* argv[]*/)
    +
    7{
    +
    8 using typo = clutchlog::fmt::typo;
    +
    9 // using fg = clutchlog::fmt::fg;
    +
    10 // using bg = clutchlog::fmt::bg;
    +
    11
    +
    12 clutchlog::fmt none;
    +
    13 clutchlog::fmt end(typo::reset);
    +
    14 clutchlog::fmt note(typo::bold);
    +
    15 clutchlog::fmt info(120,255,120); // greenish
    +
    16 clutchlog::fmt warning("#ff0055", typo::bold); // magentaish
    +
    17 clutchlog::fmt error(255,100,150, typo::bold); // redish magenta
    +
    18 clutchlog::fmt critical("#ffff00", "#ff0000"); // Yellow over red.
    +
    19
    +
    20 auto& log = clutchlog::logger();
    +
    21 log.threshold(clutchlog::level::info);
    +
    22
    +
    23 // Change a style.
    +
    24 log.style(clutchlog::level::critical, error);
    +
    25 CLUTCHLOG(critical,"Styles demo");
    +
    26
    +
    27 CLUTCHLOG(info,"Either using functions...");
    +
    28 std::cout << none("No style: ") << std::endl;
    +
    29 std::cout << note("NOTE: bold") << std::endl;
    +
    30 std::cout << info("INFO: green") << std::endl;
    +
    31
    +
    32 CLUTCHLOG(info,"... or tags.");
    +
    33 std::cout << warning << "WARNING" << end << ": bold magenta" << std::endl;
    +
    34 std::cout << error << "ERROR" << end << ": bold red" << std::endl;
    +
    35 std::cout << critical << "CRITICAL" << end << ": underlined black over red background" << std::endl;
    +
    36
    +
    37 std::ostringstream format;
    +
    38 clutchlog::fmt discreet("#888888", typo::inverse);
    +
    39 format << "{level}: "
    +
    40 << discreet("{file}") << ":"
    +
    41 << clutchlog::fmt(/*front RGB*/200,150,0, /*back RGB*/0,0,0) << "{line}" // gold yellow over black
    +
    42 << clutchlog::fmt(typo::reset) << " {msg} ! " << std::endl;
    +
    43 log.format(format.str());
    +
    44 CLUTCHLOG(critical,"After having inserted styles within a new format template");
    +
    45}
    +
    46
    +
    47
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:393
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:392
    diff --git a/docs/t-color256_8cpp_source.html b/docs/t-color256_8cpp_source.html index 828c3d6..ebda88c 100644 --- a/docs/t-color256_8cpp_source.html +++ b/docs/t-color256_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-color256.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,69 +84,66 @@ $(document).ready(function(){initNavTree('t-color256_8cpp_source.html',''); init
    -
    -
    t-color256.cpp
    +
    t-color256.cpp
    -
    1 #include <iostream>
    -
    2 #include <limits>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 int main(/*const int argc, char* argv[]*/)
    -
    7 {
    -
    8  using typo = clutchlog::fmt::typo;
    -
    9  // using fg = clutchlog::fmt::fg;
    -
    10  // using bg = clutchlog::fmt::bg;
    -
    11 
    -
    12  clutchlog::fmt none;
    -
    13  clutchlog::fmt end(typo::reset);
    -
    14  clutchlog::fmt note(typo::bold);
    -
    15  clutchlog::fmt info(106); // greenish
    -
    16  clutchlog::fmt warning(171, typo::bold); // magentaish
    -
    17  clutchlog::fmt error(198, typo::bold); // redish magenta
    -
    18  clutchlog::fmt critical(226, 196, typo::underline); // Yellow over red.
    -
    19 
    -
    20  auto& log = clutchlog::logger();
    -
    21  log.threshold(clutchlog::level::info);
    -
    22 
    -
    23  // Change a style.
    -
    24  log.style(clutchlog::level::critical, error);
    -
    25  CLUTCHLOG(critical,"Styles demo");
    -
    26 
    -
    27  CLUTCHLOG(info,"Either using functions...");
    -
    28  std::cout << none("No style: ") << std::endl;
    -
    29  std::cout << note("NOTE: bold") << std::endl;
    -
    30  std::cout << info("INFO: green") << std::endl;
    -
    31 
    -
    32  CLUTCHLOG(info,"... or tags.");
    -
    33  std::cout << warning << "WARNING" << end << ": bold magenta" << std::endl;
    -
    34  std::cout << error << "ERROR" << end << ": bold red" << std::endl;
    -
    35  std::cout << critical << "CRITICAL" << end << ": underlined black over red background" << std::endl;
    -
    36 
    -
    37  std::ostringstream format;
    -
    38  clutchlog::fmt discreet(254);
    -
    39  format << "{level}: "
    -
    40  << discreet("{file}:")
    -
    41  << clutchlog::fmt(220, typo::inverse) << "{line}" // gold yellow
    -
    42  << clutchlog::fmt(typo::reset) << " {msg} ! " << std::endl;
    -
    43  log.format(format.str());
    -
    44  CLUTCHLOG(critical,"After having inserted styles within a new format template");
    -
    45 }
    -
    46 
    +
    1#include <iostream>
    +
    2#include <limits>
    +
    3
    +
    4#include "../clutchlog/clutchlog.h"
    +
    5
    +
    6int main(/*const int argc, char* argv[]*/)
    +
    7{
    +
    8 using typo = clutchlog::fmt::typo;
    +
    9 // using fg = clutchlog::fmt::fg;
    +
    10 // using bg = clutchlog::fmt::bg;
    +
    11
    +
    12 clutchlog::fmt none;
    +
    13 clutchlog::fmt end(typo::reset);
    +
    14 clutchlog::fmt note(typo::bold);
    +
    15 clutchlog::fmt info(106); // greenish
    +
    16 clutchlog::fmt warning(171, typo::bold); // magentaish
    +
    17 clutchlog::fmt error(198, typo::bold); // redish magenta
    +
    18 clutchlog::fmt critical(226, 196, typo::underline); // Yellow over red.
    +
    19
    +
    20 auto& log = clutchlog::logger();
    +
    21 log.threshold(clutchlog::level::info);
    +
    22
    +
    23 // Change a style.
    +
    24 log.style(clutchlog::level::critical, error);
    +
    25 CLUTCHLOG(critical,"Styles demo");
    +
    26
    +
    27 CLUTCHLOG(info,"Either using functions...");
    +
    28 std::cout << none("No style: ") << std::endl;
    +
    29 std::cout << note("NOTE: bold") << std::endl;
    +
    30 std::cout << info("INFO: green") << std::endl;
    +
    31
    +
    32 CLUTCHLOG(info,"... or tags.");
    +
    33 std::cout << warning << "WARNING" << end << ": bold magenta" << std::endl;
    +
    34 std::cout << error << "ERROR" << end << ": bold red" << std::endl;
    +
    35 std::cout << critical << "CRITICAL" << end << ": underlined black over red background" << std::endl;
    +
    36
    +
    37 std::ostringstream format;
    +
    38 clutchlog::fmt discreet(254);
    +
    39 format << "{level}: "
    +
    40 << discreet("{file}:")
    +
    41 << clutchlog::fmt(220, typo::inverse) << "{line}" // gold yellow
    +
    42 << clutchlog::fmt(typo::reset) << " {msg} ! " << std::endl;
    +
    43 log.format(format.str());
    +
    44 CLUTCHLOG(critical,"After having inserted styles within a new format template");
    +
    45}
    +
    46
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:393
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:392
    diff --git a/docs/t-color_8cpp_source.html b/docs/t-color_8cpp_source.html index b61f9f2..90fcfe0 100644 --- a/docs/t-color_8cpp_source.html +++ b/docs/t-color_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-color.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,70 +84,67 @@ $(document).ready(function(){initNavTree('t-color_8cpp_source.html',''); initRes
    -
    -
    t-color.cpp
    +
    t-color.cpp
    -
    1 #include <iostream>
    -
    2 #include <limits>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 int main(/*const int argc, char* argv[]*/)
    -
    7 {
    -
    8  using typo = clutchlog::fmt::typo;
    -
    9  using fg = clutchlog::fmt::fg;
    -
    10  using bg = clutchlog::fmt::bg;
    -
    11 
    -
    12  clutchlog::fmt none;
    -
    13  clutchlog::fmt end(typo::reset);
    -
    14  clutchlog::fmt note(typo::bold);
    -
    15  clutchlog::fmt info(fg::green);
    -
    16  clutchlog::fmt warning(fg::magenta, typo::bold);
    -
    17  clutchlog::fmt error(fg::red, typo::bold);
    -
    18  clutchlog::fmt critical(bg::red, typo::underline, fg::black);
    -
    19 
    -
    20  auto& log = clutchlog::logger();
    -
    21  log.threshold(clutchlog::level::info);
    -
    22 
    -
    23  // Change a style.
    -
    24  log.style(clutchlog::level::critical, error);
    -
    25  CLUTCHLOG(critical,"Styles demo");
    -
    26 
    -
    27  CLUTCHLOG(info,"Either using functions...");
    -
    28  std::cout << none("No style: ") << std::endl;
    -
    29  std::cout << note("NOTE: bold") << std::endl;
    -
    30  std::cout << info("INFO: green") << std::endl;
    -
    31 
    -
    32  CLUTCHLOG(info,"... or tags.");
    -
    33  std::cout << warning << "WARNING" << end << ": bold magenta" << std::endl;
    -
    34  std::cout << error << "ERROR" << end << ": bold red" << std::endl;
    -
    35  std::cout << critical << "CRITICAL" << end << ": underlined black over red background" << std::endl;
    -
    36 
    -
    37  std::ostringstream format;
    -
    38  clutchlog::fmt discreet(clutchlog::fmt::fg::white);
    -
    39  format << "{level}: "
    -
    40  << discreet("{file}:")
    -
    41  << clutchlog::fmt(clutchlog::fmt::fg::yellow) << "{line}"
    -
    42  << clutchlog::fmt(clutchlog::fmt::typo::reset) << " {msg} ! " << std::endl;
    -
    43  log.format(format.str());
    -
    44  CLUTCHLOG(critical,"After having inserted styles within a new format template");
    -
    45 }
    +
    1#include <iostream>
    +
    2#include <limits>
    +
    3
    +
    4#include "../clutchlog/clutchlog.h"
    +
    5
    +
    6int main(/*const int argc, char* argv[]*/)
    +
    7{
    +
    8 using typo = clutchlog::fmt::typo;
    +
    9 using fg = clutchlog::fmt::fg;
    +
    10 using bg = clutchlog::fmt::bg;
    +
    11
    +
    12 clutchlog::fmt none;
    +
    13 clutchlog::fmt end(typo::reset);
    +
    14 clutchlog::fmt note(typo::bold);
    +
    15 clutchlog::fmt info(fg::green);
    +
    16 clutchlog::fmt warning(fg::magenta, typo::bold);
    +
    17 clutchlog::fmt error(fg::red, typo::bold);
    +
    18 clutchlog::fmt critical(bg::red, typo::underline, fg::black);
    +
    19
    +
    20 auto& log = clutchlog::logger();
    +
    21 log.threshold(clutchlog::level::info);
    +
    22
    +
    23 // Change a style.
    +
    24 log.style(clutchlog::level::critical, error);
    +
    25 CLUTCHLOG(critical,"Styles demo");
    +
    26
    +
    27 CLUTCHLOG(info,"Either using functions...");
    +
    28 std::cout << none("No style: ") << std::endl;
    +
    29 std::cout << note("NOTE: bold") << std::endl;
    +
    30 std::cout << info("INFO: green") << std::endl;
    +
    31
    +
    32 CLUTCHLOG(info,"... or tags.");
    +
    33 std::cout << warning << "WARNING" << end << ": bold magenta" << std::endl;
    +
    34 std::cout << error << "ERROR" << end << ": bold red" << std::endl;
    +
    35 std::cout << critical << "CRITICAL" << end << ": underlined black over red background" << std::endl;
    +
    36
    +
    37 std::ostringstream format;
    +
    38 clutchlog::fmt discreet(clutchlog::fmt::fg::white);
    +
    39 format << "{level}: "
    +
    40 << discreet("{file}:")
    +
    41 << clutchlog::fmt(clutchlog::fmt::fg::yellow) << "{line}"
    +
    42 << clutchlog::fmt(clutchlog::fmt::typo::reset) << " {msg} ! " << std::endl;
    +
    43 log.format(format.str());
    +
    44 CLUTCHLOG(critical,"After having inserted styles within a new format template");
    +
    45}
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:393
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    +
    bg
    Background color codes.
    Definition: clutchlog.h:425
    +
    fg
    Foreground color codes.
    Definition: clutchlog.h:404
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    -
    bg
    Background color codes.
    Definition: clutchlog.h:424
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:392
    -
    fg
    Foreground color codes.
    Definition: clutchlog.h:403
    diff --git a/docs/t-demo_8cpp_source.html b/docs/t-demo_8cpp_source.html index 6738be0..ede3343 100644 --- a/docs/t-demo_8cpp_source.html +++ b/docs/t-demo_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-demo.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,115 +84,112 @@ $(document).ready(function(){initNavTree('t-demo_8cpp_source.html',''); initResi
    -
    -
    t-demo.cpp
    +
    t-demo.cpp
    -
    1 #include <iostream>
    -
    2 
    -
    3 #include "../clutchlog/clutchlog.h"
    -
    4 
    -
    5 void i()
    -
    6 {
    -
    7  CLUTCHLOG(progress, "Reset data structures...");
    -
    8  CLUTCHLOG(debug, "OK");
    -
    9  CLUTCHLOG(progress, "Reset functors...");
    -
    10  CLUTCHLOG(critical, "Impossible to reset, I cannot recover.");
    -
    11 }
    -
    12 
    -
    13 void h()
    -
    14 {
    -
    15  CLUTCHLOG(note, "Filling up data of size: " << 0);
    -
    16  CLUTCHLOG(error, "Cannot parse input, I will reset stuff.");
    -
    17  i();
    -
    18  CLUTCHLOG(xdebug, "Last seen state: " << 0);
    -
    19 }
    -
    20 
    -
    21 void g()
    -
    22 {
    -
    23  CLUTCHLOG(warning, "Input size < " << 1);
    -
    24  h();
    -
    25 }
    -
    26 
    -
    27 void f()
    -
    28 {
    -
    29  CLUTCHLOG(progress, "Initialize data structures...");
    -
    30  CLUTCHLOG(debug, "OK");
    -
    31  CLUTCHLOG(progress, "Initialize functors...");
    -
    32  CLUTCHLOG(debug, "OK");
    -
    33  g();
    -
    34 }
    -
    35 
    -
    36 int main(const int argc, char* argv[])
    -
    37 {
    -
    38  auto& log = clutchlog::logger();
    -
    39 
    -
    40  log.style(clutchlog::level::critical,
    -
    41  clutchlog::fmt::fg::red);
    -
    42  log.style(clutchlog::level::error,
    -
    43  clutchlog::fmt::fg::red);
    -
    44  log.style(clutchlog::level::warning,
    -
    45  clutchlog::fmt::fg::magenta);
    -
    46  log.style(clutchlog::level::progress,
    -
    47  clutchlog::fmt::fg::yellow);
    -
    48  log.style(clutchlog::level::note,
    -
    49  clutchlog::fmt::fg::green);
    -
    50  log.style(clutchlog::level::info,
    -
    51  clutchlog::fmt::fg::magenta);
    -
    52  log.style(clutchlog::level::debug,
    -
    53  clutchlog::fmt::fg::cyan);
    -
    54  log.style(clutchlog::level::xdebug,
    -
    55  clutchlog::fmt::fg::blue);
    -
    56  std::ostringstream format;
    -
    57  clutchlog::fmt reset(clutchlog::fmt::typo::reset);
    -
    58  clutchlog::fmt discreet(clutchlog::fmt::fg::black);
    -
    59  clutchlog::fmt bold(clutchlog::fmt::typo::bold);
    -
    60  format << "{level_fmt}"
    -
    61  << "{level_letter}:"
    -
    62  << "{depth_marks} "
    -
    63  << bold("{msg}")
    -
    64  << discreet(" {hfill} ")
    -
    65  << "{level_fmt}{func}"
    -
    66  << discreet(" @ ")
    -
    67  << "{level_fmt}{file}"
    -
    68  << reset << ":"
    -
    69  << "{level_fmt}{line}"
    -
    70  << "\n";
    -
    71  log.format(format.str());
    -
    72 
    -
    73  // log.hfill_max(100);
    -
    74  log.out(std::clog);
    -
    75  log.depth_mark(">");
    -
    76  log.threshold(clutchlog::level::warning);
    -
    77 
    -
    78  if(argc <= 2) {
    -
    79  CLUTCHLOG(warning, "Log level not indicated, will default to xdebug");
    -
    80  log.threshold(clutchlog::level::xdebug);
    -
    81  } else {
    -
    82  try {
    -
    83  log.threshold(log.level_of(argv[1]));
    -
    84  } catch(std::out_of_range& err) {
    -
    85  CLUTCHLOG(critical,err.what());
    -
    86  exit(100);
    -
    87  }
    -
    88  }
    -
    89 
    -
    90  CLUTCHLOG(progress,"Start something");
    -
    91  f();
    -
    92  CLUTCHLOG(progress,"I have stopped");
    -
    93 }
    +
    1#include <iostream>
    +
    2
    +
    3#include "../clutchlog/clutchlog.h"
    +
    4
    +
    5void i()
    +
    6{
    +
    7 CLUTCHLOG(progress, "Reset data structures...");
    +
    8 CLUTCHLOG(debug, "OK");
    +
    9 CLUTCHLOG(progress, "Reset functors...");
    +
    10 CLUTCHLOG(critical, "Impossible to reset, I cannot recover.");
    +
    11}
    +
    12
    +
    13void h()
    +
    14{
    +
    15 CLUTCHLOG(note, "Filling up data of size: " << 0);
    +
    16 CLUTCHLOG(error, "Cannot parse input, I will reset stuff.");
    +
    17 i();
    +
    18 CLUTCHLOG(xdebug, "Last seen state: " << 0);
    +
    19}
    +
    20
    +
    21void g()
    +
    22{
    +
    23 CLUTCHLOG(warning, "Input size < " << 1);
    +
    24 h();
    +
    25}
    +
    26
    +
    27void f()
    +
    28{
    +
    29 CLUTCHLOG(progress, "Initialize data structures...");
    +
    30 CLUTCHLOG(debug, "OK");
    +
    31 CLUTCHLOG(progress, "Initialize functors...");
    +
    32 CLUTCHLOG(debug, "OK");
    +
    33 g();
    +
    34}
    +
    35
    +
    36int main(const int argc, char* argv[])
    +
    37{
    +
    38 auto& log = clutchlog::logger();
    +
    39
    +
    40 log.style(clutchlog::level::critical,
    +
    41 clutchlog::fmt::fg::red);
    +
    42 log.style(clutchlog::level::error,
    +
    43 clutchlog::fmt::fg::red);
    +
    44 log.style(clutchlog::level::warning,
    +
    45 clutchlog::fmt::fg::magenta);
    +
    46 log.style(clutchlog::level::progress,
    +
    47 clutchlog::fmt::fg::yellow);
    +
    48 log.style(clutchlog::level::note,
    +
    49 clutchlog::fmt::fg::green);
    +
    50 log.style(clutchlog::level::info,
    +
    51 clutchlog::fmt::fg::magenta);
    +
    52 log.style(clutchlog::level::debug,
    +
    53 clutchlog::fmt::fg::cyan);
    +
    54 log.style(clutchlog::level::xdebug,
    +
    55 clutchlog::fmt::fg::blue);
    +
    56 std::ostringstream format;
    +
    57 clutchlog::fmt reset(clutchlog::fmt::typo::reset);
    +
    58 clutchlog::fmt discreet(clutchlog::fmt::fg::black);
    +
    59 clutchlog::fmt bold(clutchlog::fmt::typo::bold);
    +
    60 format << "{level_fmt}"
    +
    61 << "{level_letter}:"
    +
    62 << "{depth_marks} "
    +
    63 << bold("{msg}")
    +
    64 << discreet(" {hfill} ")
    +
    65 << "{level_fmt}{func}"
    +
    66 << discreet(" @ ")
    +
    67 << "{level_fmt}{file}"
    +
    68 << reset << ":"
    +
    69 << "{level_fmt}{line}"
    +
    70 << "\n";
    +
    71 log.format(format.str());
    +
    72
    +
    73 // log.hfill_max(100);
    +
    74 log.out(std::clog);
    +
    75 log.depth_mark(">");
    +
    76 log.threshold(clutchlog::level::warning);
    +
    77
    +
    78 if(argc <= 2) {
    +
    79 CLUTCHLOG(warning, "Log level not indicated, will default to xdebug");
    +
    80 log.threshold(clutchlog::level::xdebug);
    +
    81 } else {
    +
    82 try {
    +
    83 log.threshold(log.level_of(argv[1]));
    +
    84 } catch(std::out_of_range& err) {
    +
    85 CLUTCHLOG(critical,err.what());
    +
    86 exit(100);
    +
    87 }
    +
    88 }
    +
    89
    +
    90 CLUTCHLOG(progress,"Start something");
    +
    91 f();
    +
    92 CLUTCHLOG(progress,"I have stopped");
    +
    93}
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    diff --git a/docs/t-depth-delta_8cpp_source.html b/docs/t-depth-delta_8cpp_source.html index b7900c2..152053b 100644 --- a/docs/t-depth-delta_8cpp_source.html +++ b/docs/t-depth-delta_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-depth-delta.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,82 +84,79 @@ $(document).ready(function(){initNavTree('t-depth-delta_8cpp_source.html',''); i
    -
    -
    t-depth-delta.cpp
    +
    t-depth-delta.cpp
    -
    1 #include <iostream>
    -
    2 #include <limits>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 void deepcall()
    -
    7 {
    -
    8  CLUTCHLOG(warning,"at depth 4");
    -
    9  CLUTCHLOGD(warning,"at depth 4+1", 1);
    -
    10  CLUTCHLOGD(warning,"at depth 4+2", 2);
    -
    11 }
    -
    12 
    -
    13 void subsubsubcall()
    -
    14 {
    -
    15  CLUTCHLOG(warning,"at depth 3");
    -
    16  CLUTCHLOGD(warning,"at depth 3+1", 1);
    -
    17  CLUTCHLOGD(warning,"at depth 3+2", 2);
    -
    18  deepcall();
    -
    19 }
    -
    20 
    -
    21 void subsubcall()
    -
    22 {
    -
    23  CLUTCHLOG(warning,"at depth 2");
    -
    24  CLUTCHLOGD(warning,"at depth 2+1", 1);
    -
    25  CLUTCHLOGD(warning,"at depth 2+2", 2);
    -
    26  subsubsubcall();
    -
    27 }
    -
    28 
    -
    29 void subcall()
    -
    30 {
    -
    31  CLUTCHLOG(warning,"at depth 1");
    -
    32  CLUTCHLOGD(warning,"at depth 1+1", 1);
    -
    33  CLUTCHLOGD(warning,"at depth 1+2", 2);
    -
    34  subsubcall();
    -
    35 }
    -
    36 
    -
    37 int main(/*const int argc, char* argv[]*/)
    -
    38 {
    -
    39  auto& log = clutchlog::logger();
    -
    40  using fmt = clutchlog::fmt;
    -
    41  using typo = clutchlog::fmt::typo;
    -
    42 
    -
    43  fmt reset(typo::reset);
    -
    44  std::ostringstream tpl;
    -
    45  tpl << "{depth_fmt}{depth} {depth_marks}"
    -
    46  << reset << "{funchash_fmt}in {func} {msg}\t\n";
    -
    47  log.format(tpl.str());
    -
    48  log.threshold(clutchlog::level::xdebug);
    -
    49  std::vector<fmt> greys = {fmt(15)};
    -
    50  for(unsigned short i=255; i > 231; i-=3) {
    -
    51  greys.push_back( fmt(i) ); }
    -
    52  log.depth_styles( greys );
    -
    53  log.depth_mark("| ");
    -
    54 
    -
    55  CLUTCHLOG(warning,"in main");
    -
    56  subcall();
    -
    57 }
    -
    58 
    +
    1#include <iostream>
    +
    2#include <limits>
    +
    3
    +
    4#include "../clutchlog/clutchlog.h"
    +
    5
    +
    6void deepcall()
    +
    7{
    +
    8 CLUTCHLOG(warning,"at depth 4");
    +
    9 CLUTCHLOGD(warning,"at depth 4+1", 1);
    +
    10 CLUTCHLOGD(warning,"at depth 4+2", 2);
    +
    11}
    +
    12
    +
    13void subsubsubcall()
    +
    14{
    +
    15 CLUTCHLOG(warning,"at depth 3");
    +
    16 CLUTCHLOGD(warning,"at depth 3+1", 1);
    +
    17 CLUTCHLOGD(warning,"at depth 3+2", 2);
    +
    18 deepcall();
    +
    19}
    +
    20
    +
    21void subsubcall()
    +
    22{
    +
    23 CLUTCHLOG(warning,"at depth 2");
    +
    24 CLUTCHLOGD(warning,"at depth 2+1", 1);
    +
    25 CLUTCHLOGD(warning,"at depth 2+2", 2);
    +
    26 subsubsubcall();
    +
    27}
    +
    28
    +
    29void subcall()
    +
    30{
    +
    31 CLUTCHLOG(warning,"at depth 1");
    +
    32 CLUTCHLOGD(warning,"at depth 1+1", 1);
    +
    33 CLUTCHLOGD(warning,"at depth 1+2", 2);
    +
    34 subsubcall();
    +
    35}
    +
    36
    +
    37int main(/*const int argc, char* argv[]*/)
    +
    38{
    +
    39 auto& log = clutchlog::logger();
    +
    40 using fmt = clutchlog::fmt;
    +
    41 using typo = clutchlog::fmt::typo;
    +
    42
    +
    43 fmt reset(typo::reset);
    +
    44 std::ostringstream tpl;
    +
    45 tpl << "{depth_fmt}{depth} {depth_marks}"
    +
    46 << reset << "{funchash_fmt}in {func} {msg}\t\n";
    +
    47 log.format(tpl.str());
    +
    48 log.threshold(clutchlog::level::xdebug);
    +
    49 std::vector<fmt> greys{ fmt(15) };
    +
    50 for(unsigned short i=255; i > 231; i-=3) {
    +
    51 greys.push_back( fmt(i) ); }
    +
    52 log.depth_styles( greys );
    +
    53 log.depth_mark("| ");
    +
    54
    +
    55 CLUTCHLOG(warning,"in main");
    +
    56 subcall();
    +
    57}
    +
    58
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:393
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
    Log a message at the given level and with a given depth delta.
    Definition: clutchlog.h:82
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    #define CLUTCHLOGD(LEVEL, WHAT, DEPTH_DELTA)
    Log a message at the given level and with a given depth delta.
    Definition: clutchlog.h:81
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:392
    diff --git a/docs/t-dump_8cpp_source.html b/docs/t-dump_8cpp_source.html index 322f600..90d3cac 100644 --- a/docs/t-dump_8cpp_source.html +++ b/docs/t-dump_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-dump.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,42 +84,39 @@ $(document).ready(function(){initNavTree('t-dump_8cpp_source.html',''); initResi
    -
    -
    t-dump.cpp
    +
    t-dump.cpp
    -
    1 #include <iostream>
    -
    2 #include <algorithm>
    -
    3 #include <random>
    -
    4 
    -
    5 #include "../clutchlog/clutchlog.h"
    -
    6 
    -
    7 int main(/*const int argc, char* argv[]*/)
    -
    8 {
    -
    9  auto& log = clutchlog::logger();
    -
    10 
    -
    11  log.out(std::clog);
    -
    12  log.threshold(clutchlog::level::xdebug);
    -
    13 
    -
    14  std::vector<std::string> msg = {"hello", "world", "!"};
    -
    15 
    -
    16  CLUTCHDUMP(xdebug, msg, "test_{n}.dat");
    -
    17 
    -
    18  std::vector<int> v(3);
    -
    19  std::generate(v.begin(), v.end(), std::rand);
    -
    20  CLUTCHDUMP(info, v, "rand_{n}.dat");
    -
    21 }
    +
    1#include <iostream>
    +
    2#include <algorithm>
    +
    3#include <random>
    +
    4
    +
    5#include "../clutchlog/clutchlog.h"
    +
    6
    +
    7int main(/*const int argc, char* argv[]*/)
    +
    8{
    +
    9 auto& log = clutchlog::logger();
    +
    10
    +
    11 log.out(std::clog);
    +
    12 log.threshold(clutchlog::level::xdebug);
    +
    13
    +
    14 std::vector<std::string> msg = {"hello", "world", "!"};
    +
    15
    +
    16 CLUTCHDUMP(xdebug, msg, "test_{n}.dat");
    +
    17
    +
    18 std::vector<int> v(3);
    +
    19 std::generate(v.begin(), v.end(), std::rand);
    +
    20 CLUTCHDUMP(info, v, "rand_{n}.dat");
    +
    21}
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
    Dump the given container.
    Definition: clutchlog.h:108
    -
    #define CLUTCHDUMP(LEVEL, CONTAINER, FILENAME)
    Dump the given container.
    Definition: clutchlog.h:107
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    diff --git a/docs/t-extra_8cpp_source.html b/docs/t-extra_8cpp_source.html new file mode 100644 index 0000000..7a05e50 --- /dev/null +++ b/docs/t-extra_8cpp_source.html @@ -0,0 +1,240 @@ + + + + + + + +clutchlog: t-extra.cpp Source File + + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    clutchlog 0.17 +
    +
    +
    + + + + + + + +
    +
    + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + +
    +
    t-extra.cpp
    +
    +
    +
    1#include <iostream>
    +
    2
    +
    3#include "../clutchlog/clutchlog.h"
    +
    4
    +
    5void dump_data()
    +
    6{
    +
    7 CLUTCHLOG(progress, "Dump parsed data...");
    +
    8 CLUTCHLOG(debug, "Write in `data_dump.csv`");
    +
    9 CLUTCHLOG(debug, "Data frame size: " << 0 << "x" << "150");
    +
    10 CLUTCHLOG(xdebug, "Resolution: " << 0);
    +
    11}
    +
    12
    +
    13void reset()
    +
    14{
    +
    15 CLUTCHLOG(progress, "Reset data structures...");
    +
    16 CLUTCHLOG(debug, "OK");
    +
    17 CLUTCHLOG(info, "Reset functors...");
    +
    18 CLUTCHLOG(critical, "Impossible to reset, I cannot recover.");
    +
    19 dump_data();
    +
    20}
    +
    21
    +
    22void process()
    +
    23{
    +
    24 CLUTCHLOG(note, "Filling up data of size: " << 0);
    +
    25 CLUTCHLOG(error, "Cannot parse input, I will reset stuff.");
    +
    26 reset();
    +
    27 CLUTCHLOG(xdebug, "Last seen state: " << 0);
    +
    28}
    +
    29
    +
    30void init_data()
    +
    31{
    +
    32 CLUTCHLOG(debug, "Data frame size: " << 2 << "x" << "150");
    +
    33 CLUTCHLOG(xdebug, "Resolution: " << 0.001);
    +
    34 CLUTCHLOG(warning, "Input height < " << 3);
    +
    35}
    +
    36
    +
    37void init_func()
    +
    38{
    +
    39 CLUTCHLOG(progress, "Allocate memory...");
    +
    40 CLUTCHLOG(warning, "Dimension: " << 12);
    +
    41 CLUTCHLOG(debug, "OK");
    +
    42}
    +
    43
    +
    44void init()
    +
    45{
    +
    46 CLUTCHLOG(progress, "Initialize data structures...");
    +
    47 init_data();
    +
    48 CLUTCHLOG(debug, "OK");
    +
    49 CLUTCHLOG(progress, "Initialize functors...");
    +
    50 init_func();
    +
    51 CLUTCHLOG(debug, "OK");
    +
    52 CLUTCHLOG(progress, "Process...");
    +
    53 process();
    +
    54 CLUTCHLOG(debug, "OK");
    +
    55}
    +
    56
    +
    57int main(const int argc, char* argv[])
    +
    58{
    +
    59 using level = clutchlog::level;
    +
    60 using fmt = clutchlog::fmt;
    +
    61 using fg = clutchlog::fmt::fg;
    +
    62 using bg = clutchlog::fmt::bg;
    +
    63 using typo = clutchlog::fmt::typo;
    +
    64
    +
    65 auto& log = clutchlog::logger();
    +
    66
    +
    67 log.style(level::critical, 197);
    +
    68 log.style(level::error, 202);
    +
    69 log.style(level::warning, 208);
    +
    70 log.style(level::progress, 34);
    +
    71 log.style(level::note, 35);
    +
    72 log.style(level::info, 36);
    +
    73 log.style(level::debug, 39);
    +
    74 log.style(level::xdebug, 45);
    +
    75 std::ostringstream format;
    +
    76 fmt reset(typo::reset);
    +
    77 fmt discreet(fg::black);
    +
    78 fmt bold(fmt::typo::bold);
    +
    79
    +
    80 log.depth_mark("| ");
    +
    81 log.hfill_mark('-');
    +
    82
    +
    83 const short dark = 238;
    +
    84 const short lite = 245;
    +
    85
    +
    86 std::vector<clutchlog::fmt> greys{ fmt(15) };
    +
    87 for(unsigned short i=255; i>231; i-=3) {
    +
    88 greys.push_back( fmt(i) );
    +
    89 }
    +
    90 log.depth_styles(greys);
    +
    91
    +
    92 format
    +
    93 << fmt(dark,lite) << "{name}"
    +
    94 << fmt(fg::none,lite,typo::inverse) << "{level_fmt}"
    +
    95 << fmt(fg::none,bg::black,typo::inverse) << "{level_fmt}" << " {level_short} " << reset
    +
    96 << "{level_fmt} " << reset
    +
    97 << fmt(dark,bg::none, typo::bold) << "{depth_marks}" << reset
    +
    98 // << "{funchash_fmt}"
    +
    99 << "{level_fmt}"
    +
    100 << bold("{msg}")
    +
    101 // << discreet(" {hfill} ")
    +
    102 << fmt(dark,bg::none) << " ·" << ""
    +
    103 << fmt(fg::none,dark) << "{funchash_fmt}-{hfill}"
    +
    104 << fmt(fg::none,dark) << " {funchash_fmt}{func} "
    +
    105 << fmt(lite,dark) << ""
    +
    106 // << fmt(dark,lite) << "{filehash_fmt}{file}" << reset
    +
    107 << fmt(dark,lite) << "{file}" << reset
    +
    108 << fmt(dark,lite) << ""
    +
    109 << fmt(lite,dark) << "{line}" << reset
    +
    110 << "\n";
    +
    111 log.format(format.str());
    +
    112
    +
    113 log.out(std::clog);
    +
    114 log.strip_calls(4);
    +
    115 log.filename(clutchlog::filename::dirstem);
    +
    116
    +
    117 if(argc <= 2) {
    +
    118 CLUTCHLOG(warning, "Log level not indicated, will default to xdebug");
    +
    119 log.threshold(level::xdebug);
    +
    120 } else {
    +
    121 try {
    +
    122 log.threshold(log.level_of(argv[1]));
    +
    123 } catch(std::out_of_range& err) {
    +
    124 CLUTCHLOG(critical,err.what());
    +
    125 exit(100);
    +
    126 }
    +
    127 }
    +
    128
    +
    129 CLUTCHLOG(progress,"Start analysis");
    +
    130 init();
    +
    131 CLUTCHLOG(progress,"I have stopped");
    +
    132}
    +
    133
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:393
    +
    level
    Available log levels.
    Definition: clutchlog.h:314
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    +
    bg
    Background color codes.
    Definition: clutchlog.h:425
    +
    fg
    Foreground color codes.
    Definition: clutchlog.h:404
    +
    +
    + + + + diff --git a/docs/t-filename_8cpp_source.html b/docs/t-filename_8cpp_source.html index 3f00cb7..609b894 100644 --- a/docs/t-filename_8cpp_source.html +++ b/docs/t-filename_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-filename.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,52 +84,49 @@ $(document).ready(function(){initNavTree('t-filename_8cpp_source.html',''); init
    -
    -
    t-filename.cpp
    +
    t-filename.cpp
    -
    1 #include <iostream>
    -
    2 #include <limits>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 int main(/*const int argc, char* argv[]*/)
    -
    7 {
    -
    8  auto& log = clutchlog::logger();
    -
    9  log.format("{msg}\t= {filehash_fmt}{file}\n");
    -
    10  log.threshold(clutchlog::level::xdebug);
    -
    11 
    -
    12  log.filename(clutchlog::filename::path);
    -
    13  CLUTCHLOG(note,"clutchlog::filename::path");
    -
    14 
    -
    15  log.filename(clutchlog::filename::base);
    -
    16  CLUTCHLOG(note,"clutchlog::filename::base");
    -
    17 
    -
    18  log.filename(clutchlog::filename::dir);
    -
    19  CLUTCHLOG(note,"clutchlog::filename::dir");
    -
    20 
    -
    21  log.filename(clutchlog::filename::dirbase);
    -
    22  CLUTCHLOG(note,"clutchlog::filename::dirbase");
    -
    23 
    -
    24  log.filename(clutchlog::filename::stem);
    -
    25  CLUTCHLOG(note,"clutchlog::filename::stem");
    -
    26 
    -
    27  log.filename(clutchlog::filename::dirstem);
    -
    28  CLUTCHLOG(note,"clutchlog::filename::dirstem");
    -
    29 }
    -
    30 
    -
    31 
    +
    1#include <iostream>
    +
    2#include <limits>
    +
    3
    +
    4#include "../clutchlog/clutchlog.h"
    +
    5
    +
    6int main(/*const int argc, char* argv[]*/)
    +
    7{
    +
    8 auto& log = clutchlog::logger();
    +
    9 log.format("{msg}\t= {filehash_fmt}{file}\n");
    +
    10 log.threshold(clutchlog::level::xdebug);
    +
    11
    +
    12 log.filename(clutchlog::filename::path);
    +
    13 CLUTCHLOG(note,"clutchlog::filename::path");
    +
    14
    +
    15 log.filename(clutchlog::filename::base);
    +
    16 CLUTCHLOG(note,"clutchlog::filename::base");
    +
    17
    +
    18 log.filename(clutchlog::filename::dir);
    +
    19 CLUTCHLOG(note,"clutchlog::filename::dir");
    +
    20
    +
    21 log.filename(clutchlog::filename::dirbase);
    +
    22 CLUTCHLOG(note,"clutchlog::filename::dirbase");
    +
    23
    +
    24 log.filename(clutchlog::filename::stem);
    +
    25 CLUTCHLOG(note,"clutchlog::filename::stem");
    +
    26
    +
    27 log.filename(clutchlog::filename::dirstem);
    +
    28 CLUTCHLOG(note,"clutchlog::filename::dirstem");
    +
    29}
    +
    30
    +
    31
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    diff --git a/docs/t-fmt-constructors_8cpp_source.html b/docs/t-fmt-constructors_8cpp_source.html index 1f181a8..4a68835 100644 --- a/docs/t-fmt-constructors_8cpp_source.html +++ b/docs/t-fmt-constructors_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-fmt-constructors.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,68 +84,65 @@ $(document).ready(function(){initNavTree('t-fmt-constructors_8cpp_source.html','
    -
    -
    t-fmt-constructors.cpp
    +
    t-fmt-constructors.cpp
    -
    1 #include <iostream>
    -
    2 #include <limits>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 int main(/*const int argc, char* argv[]*/)
    -
    7 {
    -
    8  using fmt = clutchlog::fmt;
    -
    9  using fg = clutchlog::fmt::fg;
    -
    10  using bg = clutchlog::fmt::bg;
    -
    11  using typo = clutchlog::fmt::typo;
    -
    12 
    -
    13  fmt none;
    -
    14  fmt c16_full(fg::red , bg::black , typo::bold);
    -
    15  fmt c16_nofg(bg::black , typo::bold);
    -
    16  fmt c16_nobg(fg::red , typo::bold);
    -
    17  fmt c16_fg (fg::red );
    -
    18  fmt c16_bg (bg::red );
    -
    19  fmt c16_typo(typo::bold);
    -
    20  fmt c16_bft (bg::black , fg::red , typo::bold);
    -
    21  fmt c16_bgfg(bg::black , fg::red );
    -
    22  fmt c16_tbf (typo::bold, bg::black , fg::red );
    -
    23  fmt c16_tfb (typo::bold, fg::red , bg::black );
    -
    24  fmt c16_tf (typo::bold, fg::red );
    -
    25  fmt c16_tb (typo::bold, bg::black );
    -
    26 
    -
    27  fmt c256_fbt(196 , 236 , typo::bold);
    -
    28  fmt c256_ft (196 , typo::bold);
    -
    29  fmt c256_fb (196 , 236 );
    -
    30  fmt c256_nbt(fg::none, 236 , typo::bold);
    -
    31  fmt c256_fnt(196 , bg::none , typo::bold);
    -
    32  fmt c256_nb (fg::none, 236 );
    -
    33  fmt c256_fn (196 , bg::none );
    -
    34 
    -
    35  fmt c16M_fbt(255,10,10 , 10,10,20 , typo::bold);
    -
    36  fmt c16M_ft (255,10,10 , typo::bold);
    -
    37  fmt c16M_fb (255,10,10 , 10,10,20 );
    -
    38  fmt c16M_nbt(fg::none , 10,10,20 , typo::bold);
    -
    39  fmt c16M_fnt(255,10,10 , bg::none , typo::bold);
    -
    40  fmt c16M_nb (fg::none , 10,10,20 );
    -
    41  fmt c16M_fn (255,10,10 , bg::none );
    -
    42 }
    -
    43 
    -
    44 
    -
    45 
    +
    1#include <iostream>
    +
    2#include <limits>
    +
    3
    +
    4#include "../clutchlog/clutchlog.h"
    +
    5
    +
    6int main(/*const int argc, char* argv[]*/)
    +
    7{
    +
    8 using fmt = clutchlog::fmt;
    +
    9 using fg = clutchlog::fmt::fg;
    +
    10 using bg = clutchlog::fmt::bg;
    +
    11 using typo = clutchlog::fmt::typo;
    +
    12
    +
    13 fmt none;
    +
    14 fmt c16_full(fg::red , bg::black , typo::bold);
    +
    15 fmt c16_nofg(bg::black , typo::bold);
    +
    16 fmt c16_nobg(fg::red , typo::bold);
    +
    17 fmt c16_fg (fg::red );
    +
    18 fmt c16_bg (bg::red );
    +
    19 fmt c16_typo(typo::bold);
    +
    20 fmt c16_bft (bg::black , fg::red , typo::bold);
    +
    21 fmt c16_bgfg(bg::black , fg::red );
    +
    22 fmt c16_tbf (typo::bold, bg::black , fg::red );
    +
    23 fmt c16_tfb (typo::bold, fg::red , bg::black );
    +
    24 fmt c16_tf (typo::bold, fg::red );
    +
    25 fmt c16_tb (typo::bold, bg::black );
    +
    26
    +
    27 fmt c256_fbt(196 , 236 , typo::bold);
    +
    28 fmt c256_ft (196 , typo::bold);
    +
    29 fmt c256_fb (196 , 236 );
    +
    30 fmt c256_nbt(fg::none, 236 , typo::bold);
    +
    31 fmt c256_fnt(196 , bg::none , typo::bold);
    +
    32 fmt c256_nb (fg::none, 236 );
    +
    33 fmt c256_fn (196 , bg::none );
    +
    34
    +
    35 fmt c16M_fbt(255,10,10 , 10,10,20 , typo::bold);
    +
    36 fmt c16M_ft (255,10,10 , typo::bold);
    +
    37 fmt c16M_fb (255,10,10 , 10,10,20 );
    +
    38 fmt c16M_nbt(fg::none , 10,10,20 , typo::bold);
    +
    39 fmt c16M_fnt(255,10,10 , bg::none , typo::bold);
    +
    40 fmt c16M_nb (fg::none , 10,10,20 );
    +
    41 fmt c16M_fn (255,10,10 , bg::none );
    +
    42}
    +
    43
    +
    44
    +
    45
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:393
    +
    bg
    Background color codes.
    Definition: clutchlog.h:425
    +
    fg
    Foreground color codes.
    Definition: clutchlog.h:404
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    -
    bg
    Background color codes.
    Definition: clutchlog.h:424
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:392
    -
    fg
    Foreground color codes.
    Definition: clutchlog.h:403
    diff --git a/docs/t-hash-color_8cpp_source.html b/docs/t-hash-color_8cpp_source.html index 278db16..383f744 100644 --- a/docs/t-hash-color_8cpp_source.html +++ b/docs/t-hash-color_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-hash-color.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,72 +84,69 @@ $(document).ready(function(){initNavTree('t-hash-color_8cpp_source.html',''); in
    -
    -
    t-hash-color.cpp
    +
    t-hash-color.cpp
    -
    1 #include <iostream>
    -
    2 #include <limits>
    -
    3 
    -
    4 #include "../clutchlog/clutchlog.h"
    -
    5 
    -
    6 void deepcall()
    -
    7 {
    -
    8  CLUTCHLOG(warning,"at depth 4");
    -
    9 }
    -
    10 
    -
    11 void subsubsubcall()
    -
    12 {
    -
    13  CLUTCHLOG(warning,"at depth 3");
    -
    14  deepcall();
    -
    15 }
    -
    16 
    -
    17 void subsubcall()
    -
    18 {
    -
    19  CLUTCHLOG(warning,"at depth 2");
    -
    20  subsubsubcall();
    -
    21 }
    -
    22 
    -
    23 void subcall()
    -
    24 {
    -
    25  CLUTCHLOG(warning,"at depth 1");
    -
    26  subsubcall();
    -
    27 }
    -
    28 
    -
    29 int main(/*const int argc, char* argv[]*/)
    -
    30 {
    -
    31  auto& log = clutchlog::logger();
    -
    32  using fmt = clutchlog::fmt;
    -
    33  using typo = clutchlog::fmt::typo;
    -
    34 
    -
    35  fmt reset(typo::reset);
    -
    36  std::ostringstream tpl;
    -
    37  tpl << "{level_fmt}Having a {level} {filehash_fmt}within {file} {funchash_fmt}calling {func} {depth_fmt}at depth {depth_marks} {depth} "
    -
    38  << reset << " : {msg}\n";
    -
    39  log.format(tpl.str());
    -
    40  log.threshold(clutchlog::level::xdebug);
    -
    41 
    -
    42  log.filehash_styles( {fmt(fmt::fg::red), fmt(fmt::fg::yellow)} );
    -
    43  log.funchash_styles( {fmt(fmt::fg::green), fmt(fmt::fg::blue),
    -
    44  fmt(fmt::fg::bright_green), fmt(fmt::fg::bright_blue), fmt(fmt::fg::magenta)} );
    -
    45  log.depth_styles( {fmt(255),fmt(250),fmt(245),fmt(240)} );
    -
    46 
    -
    47  CLUTCHLOG(warning,"in main");
    -
    48  subcall();
    -
    49 }
    +
    1#include <iostream>
    +
    2#include <limits>
    +
    3
    +
    4#include "../clutchlog/clutchlog.h"
    +
    5
    +
    6void deepcall()
    +
    7{
    +
    8 CLUTCHLOG(warning,"at depth 4");
    +
    9}
    +
    10
    +
    11void subsubsubcall()
    +
    12{
    +
    13 CLUTCHLOG(warning,"at depth 3");
    +
    14 deepcall();
    +
    15}
    +
    16
    +
    17void subsubcall()
    +
    18{
    +
    19 CLUTCHLOG(warning,"at depth 2");
    +
    20 subsubsubcall();
    +
    21}
    +
    22
    +
    23void subcall()
    +
    24{
    +
    25 CLUTCHLOG(warning,"at depth 1");
    +
    26 subsubcall();
    +
    27}
    +
    28
    +
    29int main(/*const int argc, char* argv[]*/)
    +
    30{
    +
    31 auto& log = clutchlog::logger();
    +
    32 using fmt = clutchlog::fmt;
    +
    33 using typo = clutchlog::fmt::typo;
    +
    34
    +
    35 fmt reset(typo::reset);
    +
    36 std::ostringstream tpl;
    +
    37 tpl << "{level_fmt}Having a {level} {filehash_fmt}within {file} {funchash_fmt}calling {func} {depth_fmt}at depth {depth_marks} {depth} "
    +
    38 << reset << " : {msg}\n";
    +
    39 log.format(tpl.str());
    +
    40 log.threshold(clutchlog::level::xdebug);
    +
    41
    +
    42 log.filehash_styles( {fmt(fmt::fg::red), fmt(fmt::fg::yellow)} );
    +
    43 log.funchash_styles( {fmt(fmt::fg::green), fmt(fmt::fg::blue),
    +
    44 fmt(fmt::fg::bright_green), fmt(fmt::fg::bright_blue), fmt(fmt::fg::magenta)} );
    +
    45 log.depth_styles( {fmt(255),fmt(250),fmt(245),fmt(240)} );
    +
    46
    +
    47 CLUTCHLOG(warning,"in main");
    +
    48 subcall();
    +
    49}
    +
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:380
    +
    typo
    Typographic style codes.
    Definition: clutchlog.h:393
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    Color and style formatter for ANSI terminal escape sequences.
    Definition: clutchlog.h:379
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    -
    typo
    Typographic style codes.
    Definition: clutchlog.h:392
    diff --git a/docs/t-log_8cpp_source.html b/docs/t-log_8cpp_source.html index be366c8..cb78594 100644 --- a/docs/t-log_8cpp_source.html +++ b/docs/t-log_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-log.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,91 +84,88 @@ $(document).ready(function(){initNavTree('t-log_8cpp_source.html',''); initResiz
    -
    -
    t-log.cpp
    +
    t-log.cpp
    -
    1 #include <iostream>
    -
    2 
    -
    3 #include "../clutchlog/clutchlog.h"
    -
    4 
    -
    5 void h()
    -
    6 {
    -
    7  CLUTCHLOG(info, "!");
    -
    8  std::clog << "--" << std::endl;
    -
    9 }
    -
    10 
    -
    11 void g()
    -
    12 {
    -
    13  CLUTCHLOG(warning, "world");
    -
    14  h();
    -
    15 }
    -
    16 
    -
    17 void f()
    -
    18 {
    -
    19  CLUTCHLOG(error, "hello ");
    -
    20  g();
    -
    21 }
    -
    22 
    -
    23 int main(/*const int argc, char* argv[]*/)
    -
    24 {
    -
    25  auto& log = clutchlog::logger();
    -
    26 
    -
    27  log.out(std::clog);
    -
    28 
    -
    29  std::clog << "depth: 99; threshold: xdebug; location: .*" << std::endl;
    -
    30 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    31  log.depth(99);
    -
    32 #endif
    -
    33  log.threshold(clutchlog::level::xdebug);
    -
    34  log.location(".*",".*");
    -
    35  f();
    -
    36 
    -
    37  std::clog << "depth: 4; threshold: xdebug; location: ,*" << std::endl;
    -
    38 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    39  log.depth(4);
    -
    40 #endif
    -
    41  assert(log.levels().find("XDebug") != std::end(log.levels())); // contains
    -
    42  assert(log.levels().find("Xdebug") == std::end(log.levels())); // not contains
    -
    43  log.threshold("XDebug");
    -
    44  log.location(".*");
    -
    45  f();
    -
    46 
    -
    47  std::clog << "depth: 99; threshold: warning; location: .*" << std::endl;
    -
    48 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    49  log.depth(99);
    -
    50 #endif
    -
    51  log.threshold(clutchlog::level::warning);
    -
    52  log.location(".*");
    -
    53  f();
    -
    54 
    -
    55  std::clog << "depth: 99; threshold: xdebug; location: 'core','g'" << std::endl;
    -
    56 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    57  log.depth(99);
    -
    58 #endif
    -
    59  log.threshold(clutchlog::level::xdebug);
    -
    60  log.location("core","g");
    -
    61  f();
    -
    62 
    -
    63  std::clog << "depth: 99; threshold: debug; location: '.*','(g|h)'" << std::endl;
    -
    64 #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    -
    65  log.depth(99);
    -
    66 #endif
    -
    67  log.threshold("Debug");
    -
    68  log.location(".*","(g|h)");
    -
    69  f();
    -
    70 }
    +
    1#include <iostream>
    +
    2
    +
    3#include "../clutchlog/clutchlog.h"
    +
    4
    +
    5void h()
    +
    6{
    +
    7 CLUTCHLOG(info, "!");
    +
    8 std::clog << "--" << std::endl;
    +
    9}
    +
    10
    +
    11void g()
    +
    12{
    +
    13 CLUTCHLOG(warning, "world");
    +
    14 h();
    +
    15}
    +
    16
    +
    17void f()
    +
    18{
    +
    19 CLUTCHLOG(error, "hello ");
    +
    20 g();
    +
    21}
    +
    22
    +
    23int main(/*const int argc, char* argv[]*/)
    +
    24{
    +
    25 auto& log = clutchlog::logger();
    +
    26
    +
    27 log.out(std::clog);
    +
    28
    +
    29 std::clog << "depth: 99; threshold: xdebug; location: .*" << std::endl;
    +
    30#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    31 log.depth(99);
    +
    32#endif
    +
    33 log.threshold(clutchlog::level::xdebug);
    +
    34 log.location(".*",".*");
    +
    35 f();
    +
    36
    +
    37 std::clog << "depth: 4; threshold: xdebug; location: ,*" << std::endl;
    +
    38#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    39 log.depth(4);
    +
    40#endif
    +
    41 assert(log.levels().find("XDebug") != std::end(log.levels())); // contains
    +
    42 assert(log.levels().find("Xdebug") == std::end(log.levels())); // not contains
    +
    43 log.threshold("XDebug");
    +
    44 log.location(".*");
    +
    45 f();
    +
    46
    +
    47 std::clog << "depth: 99; threshold: warning; location: .*" << std::endl;
    +
    48#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    49 log.depth(99);
    +
    50#endif
    +
    51 log.threshold(clutchlog::level::warning);
    +
    52 log.location(".*");
    +
    53 f();
    +
    54
    +
    55 std::clog << "depth: 99; threshold: xdebug; location: 'core','g'" << std::endl;
    +
    56#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    57 log.depth(99);
    +
    58#endif
    +
    59 log.threshold(clutchlog::level::xdebug);
    +
    60 log.location("core","g");
    +
    61 f();
    +
    62
    +
    63 std::clog << "depth: 99; threshold: debug; location: '.*','(g|h)'" << std::endl;
    +
    64#if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1
    +
    65 log.depth(99);
    +
    66#endif
    +
    67 log.threshold("Debug");
    +
    68 log.location(".*","(g|h)");
    +
    69 f();
    +
    70}
    +
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:307
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    static clutchlog & logger()
    Get the logger instance.
    Definition: clutchlog.h:306
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    diff --git a/docs/t-one-line-if_8cpp_source.html b/docs/t-one-line-if_8cpp_source.html index d135c05..6c58249 100644 --- a/docs/t-one-line-if_8cpp_source.html +++ b/docs/t-one-line-if_8cpp_source.html @@ -2,8 +2,8 @@ - - + + clutchlog: t-one-line-if.cpp Source File @@ -24,11 +24,10 @@
    - + - @@ -36,21 +35,22 @@
    -
    clutchlog -  0.16 +
    +
    clutchlog 0.17
    - + +/* @license-end */ +
    @@ -64,7 +64,7 @@ $(function() {
    @@ -84,34 +84,31 @@ $(document).ready(function(){initNavTree('t-one-line-if_8cpp_source.html',''); i
    -
    -
    t-one-line-if.cpp
    +
    t-one-line-if.cpp
    -
    1 #include "../clutchlog/clutchlog.h"
    -
    2 
    -
    3 int main()
    -
    4 {
    -
    5  if(true)
    -
    6  CLUTCHLOG(error, "WHAT?");
    -
    7  else
    -
    8  CLUTCHLOG(info, "OH!");
    -
    9 
    -
    10  if(false)
    -
    11  CLUTCHLOG(info, "AH!");
    -
    12  else
    -
    13  CLUTCHLOG(error, "NO!");
    -
    14 }
    +
    1#include "../clutchlog/clutchlog.h"
    +
    2
    +
    3int main()
    +
    4{
    +
    5 if(true)
    +
    6 CLUTCHLOG(error, "WHAT?");
    +
    7 else
    +
    8 CLUTCHLOG(info, "OH!");
    +
    9
    +
    10 if(false)
    +
    11 CLUTCHLOG(info, "AH!");
    +
    12 else
    +
    13 CLUTCHLOG(error, "NO!");
    +
    14}
    +
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:99
    -
    #define CLUTCHLOG(LEVEL, WHAT)
    Log a message at the given level.
    Definition: clutchlog.h:98
    diff --git a/docs/tabs.css b/docs/tabs.css index 7d45d36..fb0977a 100644 --- a/docs/tabs.css +++ b/docs/tabs.css @@ -1 +1 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0px 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0px 1px 1px rgba(255,255,255,0.9);color:#283A5D;outline:none}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a.current{color:#D23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media (min-width: 768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283A5D transparent transparent transparent;background:transparent;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0px 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a:hover span.sub-arrow{border-color:#fff transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;border-radius:5px !important;box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent #fff}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #D23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#D23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:#666;-webkit-transition:all 0.25s;transition:all 0.25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked~.main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked~.main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked~.main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}#main-menu-state:not(:checked)~#main-menu{display:none}#main-menu-state:checked~#main-menu{display:block}@media (min-width: 768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked)~#main-menu{display:block}}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0px 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0px 1px 1px rgba(255,255,255,0.9);color:#283A5D;outline:none}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a.current{color:#D23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media (min-width: 768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283A5D transparent transparent transparent;background:transparent;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0px 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a:hover span.sub-arrow{border-color:#fff transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;border-radius:5px !important;box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent #fff}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #D23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#D23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} From 5609007da7fcdf742f1a9fb3ea74d96d846c4eab Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Tue, 10 Sep 2024 16:23:03 +0200 Subject: [PATCH 15/20] refactor(constructors): make all constructor explicits & use integral types --- clutchlog/clutchlog.h | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index 9d9466b..9efb6dc 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -712,45 +712,46 @@ class clutchlog /** @name All combination of 16-colors mode constructors with different parameters orders. * @{ */ - fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} - fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} - fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} - fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} - fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} - fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} + explicit fmt( fg f, bg b = bg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} + explicit fmt( fg f, typo s , bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} + explicit fmt( bg b, fg f = fg::none, typo s = typo::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} + explicit fmt( bg b, typo s , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} + explicit fmt(typo s, fg f = fg::none, bg b = bg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} + explicit fmt(typo s, bg b , fg f = fg::none) : mode(ansi::colors_16), style(s), fore(f), back(b) {} /** @} */ /** @name All combination of 256-colors mode constructors with different parameters orders. * @{ */ - fmt(fg_256 f, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {} - fmt(fg_256 f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {} - fmt(fg, bg_256 b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {} + explicit fmt(const short f, const short b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(b) {} + explicit fmt(const short f, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {} + explicit fmt(fg, const short b, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(fg::none), back_256(b) {} + explicit fmt(const short f, bg, typo s = typo::none) : mode(ansi::colors_256), style(s), fore_256(f), back_256(bg::none) {} /** @} */ /** @name All combination of 16M-colors mode constructors with different parameters orders. * @{ */ - fmt(const short fr, const short fg, const short fb, + explicit fmt(const short fr, const short fg, const short fb, const short gr, const short gg, const short gb, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(gr,gg,gb) {} - fmt(fg, + explicit fmt(fg, const short gr, const short gg, const short gb, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(gr,gg,gb) {} - fmt(const short fr, const short fg, const short fb, + explicit fmt(const short fr, const short fg, const short fb, bg, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {} - fmt(const short fr, const short fg, const short fb, + explicit fmt(const short fr, const short fg, const short fb, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(fr,fg,fb), back_16M(bg::none) {} - fmt(const std::string& f, const std::string& b, typo s = typo::none) + explicit fmt(const std::string& f, const std::string& b, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(b) {} - fmt(fg, const std::string& b, typo s = typo::none) + explicit fmt(fg, const std::string& b, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(fg::none), back_16M(b) {} - fmt(const std::string& f, bg, typo s = typo::none) + explicit fmt(const std::string& f, bg, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {} - fmt(const std::string& f, typo s = typo::none) + explicit fmt(const std::string& f, typo s = typo::none) : mode(ansi::colors_16M), style(s), fore_16M(f), back_16M(bg::none) {} /** @} */ From 36451de3c754437c69645746ec947da3cba4393b Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Tue, 10 Sep 2024 16:24:23 +0200 Subject: [PATCH 16/20] fix: avoid unecessary copy constructor --- clutchlog/clutchlog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index 9efb6dc..22309aa 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -832,7 +832,7 @@ class clutchlog if(domain.size() == 0) { return fmt(static_cast(h % 256)); } else { - return fmt(domain[h % domain.size()]); + return domain[h % domain.size()]; } } }; // fmt class From 43028ec0d5042920e31ad67fd71069a43979aa3b Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Tue, 10 Sep 2024 16:25:19 +0200 Subject: [PATCH 17/20] fix(OFF): return singleton even when OFF --- clutchlog/clutchlog.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index 22309aa..e6ab9ec 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -1505,7 +1505,10 @@ class clutchlog class clutchlog { public: - static clutchlog& logger() {} + static clutchlog& logger() { + static clutchlog instance; + return instance; + } enum level {critical=0, error=1, warning=2, progress=3, note=4, info=5, debug=6, xdebug=7}; enum filename {path, base, dir, dirbase, stem, dirstem}; class fmt { From 799ba17a183f9985756ca4ead6fe931513a904a5 Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Tue, 10 Sep 2024 16:26:08 +0200 Subject: [PATCH 18/20] fix(OFF): return values even when OFF --- clutchlog/clutchlog.h | 48 ++++++++++++++++++++++++------------------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index e6ab9ec..eeace5a 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -1603,9 +1603,9 @@ class clutchlog protected: std::ostream& print_on( std::ostream&) const {} public: - friend std::ostream& operator<<(std::ostream&, const fmt&) {} - std::string operator()( const std::string&) const {} - std::string str() const {} + friend std::ostream& operator<<(std::ostream& os, const fmt&) { return os; } + std::string operator()( const std::string& msg) const { return msg; } + std::string str() const { return ""; } static fmt hash( const std::string&, const std::vector) {} }; public: @@ -1624,32 +1624,32 @@ class clutchlog {} public: void format(const std::string&) {} - std::string format() const {} + std::string format() const { return ""; } void format_comment(const std::string&) {} - std::string format_comment() const {} + std::string format_comment() const { return ""; } void out(std::ostream&) {} std::ostream& out() {} #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 void depth(size_t) {} - size_t depth() const {} + size_t depth() const { return 0; } void depth_mark(const std::string) {} - std::string depth_mark() const {} + std::string depth_mark() const { return ""; } void strip_calls(const size_t) {} - size_t strip_calls() const {} + size_t strip_calls() const { return 0; } #endif #if CLUTCHLOG_HAVE_UNIX_SYSIOCTL == 1 void hfill_mark(const char) {} - char hfill_mark() const {} + char hfill_mark() const { return '\0'; } void hfill_fmt(fmt) {} - fmt hfill_fmt() const {} + fmt hfill_fmt() const { return fmt(); } void hfill_min(const size_t) {} - size_t hfill_min() {} + size_t hfill_min() { return 0; } void hfill_max(const size_t) {} - size_t hfill_max() {} + size_t hfill_max() { return 0; } #endif void filehash_styles(std::vector ) {} void funchash_styles(std::vector ) {} @@ -1657,9 +1657,9 @@ class clutchlog void threshold(level) {} void threshold(const std::string&) {} - level threshold() const {} + level threshold() const { return level::error; } const std::map levels() const {} - level level_of(const std::string) {} + level level_of(const std::string) { return level::error; } void file(std::string) {} void func(std::string) {} @@ -1677,25 +1677,29 @@ class clutchlog template void style(level, FMT...) {} void style(level, fmt) {} - fmt style(level) const {} + fmt style(level) const { return fmt(); } void filename(filename) {} public: std::string replace( - const std::string&, + const std::string& form, const std::string&, const std::string& ) const - {} + { + return form; + } std::string replace( - const std::string&, + const std::string& form, const std::string&, const size_t ) const - {} + { + return form; + } std::string format( - std::string, + std::string row, const std::string&, #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 const std::string&, @@ -1709,7 +1713,9 @@ class clutchlog const size_t #endif ) const - {} + { + return row; + } void log( const level&, From 28f50d0badd8471e8ae3221ecd2ac9338ffa9bd3 Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Sat, 21 Sep 2024 11:07:51 +0200 Subject: [PATCH 19/20] fix(depth): handle underflow gracefully If asked for stripping more calls than the actual depth, clutchlog was going in an infinite loop. --- clutchlog/clutchlog.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index eeace5a..764529d 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -1333,7 +1333,10 @@ class clutchlog row = replace(row, "\\{level_short\\}", _level_short.at(stage)); #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 - size_t actual_depth = depth - _strip_calls; + size_t actual_depth = 0; + if( _strip_calls < depth) { + actual_depth = depth - _strip_calls; + } row = replace(row, "\\{name\\}", name); row = replace(row, "\\{depth\\}", actual_depth); @@ -1358,6 +1361,7 @@ class clutchlog row = replace(row, "\\{depth_marks\\}", chevrons.str()); } #endif + row = replace(row, "\\{level_fmt\\}", _level_fmt.at(stage).str()); row = replace(row, "\\{filehash_fmt\\}", fmt::hash(file, _filehash_fmts).str() ); row = replace(row, "\\{funchash_fmt\\}", fmt::hash(func, _funchash_fmts).str() ); From c8d148cf97eb8921a4f3e6df1a4fe45ca87b2f76 Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Tue, 1 Oct 2024 09:47:23 +0200 Subject: [PATCH 20/20] fix(depth): avoid overflow when manually setting depth Setting the depth to INTMAX was overflowing if strep calls was also set, resulting in no log triggered. --- clutchlog/clutchlog.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index 764529d..9a2c57f 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -32,6 +32,7 @@ #define CLUTCHLOG_HAVE_UNIX_SYSINFO 1 #else #define CLUTCHLOG_HAVE_UNIX_SYSINFO 0 + // #pragma message("[clutchlog] no POSIX SYSINFO header") #endif //! True if the system can handle the `hfill` feature. @@ -42,6 +43,7 @@ #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL 1 #else #define CLUTCHLOG_HAVE_UNIX_SYSIOCTL 0 + // #pragma message("[clutchlog] no POSIX SYSIOCTL header") #endif @@ -52,7 +54,12 @@ #ifndef NDEBUG //! Actually enable clutchlog features. #define WITH_CLUTCHLOG + // #pragma message("[clutchlog] automatically enabled") + // #else + // #pragma message("[clutchlog] automatically disabled") #endif +// #else + // #pragma message("[clutchlog] manually enabled") #endif /********************************************************************** @@ -171,6 +178,7 @@ #define CLUTCHDUMP( LEVEL, CONTAINER, FILENAME ) do {/*nothing*/} while(0) #define CLUTCHFUNC( LEVEL, FUNC, ... ) do {/*nothing*/} while(0) #define CLUTCHCODE( LEVEL, CODE ) do {/*nothing*/} while(0) + // #pragma message("[clutchlog] fully disabled") #endif // WITH_CLUTCHLOG /********************************************************************** @@ -999,7 +1007,9 @@ class clutchlog #if CLUTCHLOG_HAVE_UNIX_SYSINFO == 1 //! Set the stack depth above which logs are not printed. - void depth(size_t d) {_depth = d;} + void depth(size_t d) { + _depth = std::min(d, std::numeric_limits::max() - _strip_calls); + } //! Get the stack depth above which logs are not printed. size_t depth() const {return _depth;}