indentlog: refactor: move stream-inserters to print/ subdir
This commit is contained in:
parent
5c60277610
commit
efe207a4de
19 changed files with 9 additions and 9 deletions
|
|
@ -1,278 +0,0 @@
|
|||
/* @file function.hpp */
|
||||
|
||||
#include "color.hpp"
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdint>
|
||||
|
||||
namespace xo {
|
||||
enum class function_style : std::uint8_t {
|
||||
/* literal: print supplied text, no alterations */
|
||||
literal,
|
||||
/* pretty: print name, surrounded by []
|
||||
* [double Quadratic::operator()(double) const]
|
||||
*/
|
||||
pretty,
|
||||
/* streamlined: remove extraneous detail,
|
||||
* try to print something like class::method
|
||||
* Quadratic::operator()
|
||||
*/
|
||||
streamlined,
|
||||
/* simple: remove everything except function/method name
|
||||
* operator()
|
||||
*/
|
||||
simple
|
||||
};
|
||||
|
||||
/* Tag to drive header-only expression */
|
||||
template <typename Tag>
|
||||
class function_name_impl {
|
||||
public:
|
||||
/* color: ANSI escape color (lookup Select Graphic Rendition subset)
|
||||
* 0 = none
|
||||
* 31 = red
|
||||
*/
|
||||
function_name_impl(function_style style,
|
||||
color_spec_type const & spec,
|
||||
std::string_view pretty)
|
||||
: style_{style}, color_spec_{spec}, pretty_{pretty} {}
|
||||
|
||||
function_style style() const { return style_; }
|
||||
color_spec_type const & colorspec() const { return color_spec_; }
|
||||
std::string_view const & pretty() const { return pretty_; }
|
||||
|
||||
/* e.g.
|
||||
* <------------------------------------- s2 ------------------------------------->
|
||||
* <--------------------- s3 ----------------->
|
||||
* <----- s4 ----->
|
||||
* std::vector<std::pair<int, xo::bar> xo::sometemplateclass<T,U>::fib(int, char**) const
|
||||
* ^ ^
|
||||
* p q
|
||||
*
|
||||
* fib <- .print_aux()
|
||||
*/
|
||||
static void print_simple(std::ostream & os, std::string_view const & s) {
|
||||
std::size_t p = exclude_const_suffix(s);
|
||||
std::string_view s2 = s.substr(0, p); /* no const suffix */
|
||||
std::size_t q = exclude_return_type(s2);
|
||||
std::string_view s3 = s2.substr(q); /* no return type */
|
||||
std::size_t r = find_toplevel_sep(s3, true /*last_flag*/);
|
||||
std::string_view s4 = s3.substr(r);
|
||||
|
||||
print_aux(os, s4);
|
||||
} /*print_simple*/
|
||||
|
||||
/* e.g.
|
||||
* <----------------------------------- s2 --------------------------------------->
|
||||
* <--------------------- s3 ----------------->
|
||||
* <----------------- s4 ----------------->
|
||||
* std::vector<std::pair<int, xo::bar> xo::sometemplateclass<T,U>::fib(int, char**) const
|
||||
* ^ ^ ^
|
||||
* q r p
|
||||
*
|
||||
* sometemplateclass ::fib <- .print_aux()
|
||||
*
|
||||
*/
|
||||
static void print_streamlined(std::ostream & os, std::string_view const & s) {
|
||||
std::size_t p = exclude_const_suffix(s);
|
||||
std::string_view s2 = s.substr(0, p); /*no const suffix */
|
||||
std::size_t q = exclude_return_type(s2);
|
||||
std::string_view s3 = s2.substr(q); /*no return type*/
|
||||
std::size_t r = find_toplevel_sep(s3, false /*!last_flag*/);
|
||||
std::string_view s4 = s3.substr(r); /*no namespace qualifier (unless function)*/
|
||||
|
||||
//std::cerr << "print_streamlined: s=[" << s << "], p=" << p << std::endl;
|
||||
//std::cerr << "print_streamlined: s2=[" << s2 << "], q=" << q << std::endl;
|
||||
//std::cerr << "print_streamlined: s3=[" << s3 << "], r=" << r << std::endl;
|
||||
//std::cerr << "print_streamlined: s4=[" << s4 << "]" << std::endl;
|
||||
|
||||
print_aux(os, s4);
|
||||
} /*print_streamlined*/
|
||||
|
||||
private:
|
||||
static std::size_t exclude_return_type(std::string_view const & s) {
|
||||
/* strategy:
|
||||
* - scan right-to-left
|
||||
* - ignore anything between matching <>, () pairs (i.e. anything nested)
|
||||
* - stop at rightmost toplevel space --> return suffix following that space
|
||||
*/
|
||||
std::size_t nesting_level = 0;
|
||||
|
||||
std::size_t z = s.size();
|
||||
for (std::size_t rp = 0; rp < z; ++rp) {
|
||||
std::size_t p = z-1-rp;
|
||||
char ch = s[p];
|
||||
|
||||
if (ch == '<' || ch == '(')
|
||||
++nesting_level;
|
||||
|
||||
if (nesting_level == 0) {
|
||||
if (ch == ' ')
|
||||
return p + 1;
|
||||
}
|
||||
|
||||
if (ch == '>' || ch == ')')
|
||||
--nesting_level;
|
||||
}
|
||||
|
||||
return 0;
|
||||
} /*exclude_return_type*/
|
||||
|
||||
static std::size_t exclude_const_suffix(std::string_view const & s) {
|
||||
constexpr std::uint32_t c_prefix_z = 6 /*strlen(" const")*/;
|
||||
|
||||
if ((s.size() > c_prefix_z)
|
||||
&& (s.substr(s.size() - c_prefix_z) == " const"))
|
||||
{
|
||||
return s.size() - c_prefix_z;
|
||||
}
|
||||
|
||||
return s.size();
|
||||
} /*exclude_const_suffix*/
|
||||
|
||||
/* e.g.
|
||||
* xo::ns::someclass<xo::foo, xo::bar>::somemethod(xo::enum1, std::vector<xo::blah>)
|
||||
* ^
|
||||
* return this pos
|
||||
* (pos just after 2nd-last non-nested separator)
|
||||
*
|
||||
* last_flag: return pos after last ::
|
||||
* !last_flag: return pos after 2nd-last ::
|
||||
*/
|
||||
static std::size_t find_toplevel_sep(std::string_view const & s, bool last_flag) {
|
||||
/* strategy:
|
||||
* - scan left-to-right
|
||||
* - ignore anything between matching <>, () pairs (i.e. anything nested)
|
||||
* - count :: pairs
|
||||
* - remember 2nd-last :: pair; reports pos just after it
|
||||
*
|
||||
* note:
|
||||
* - if no :: pairs, or only one such pair, return 0
|
||||
*/
|
||||
std::size_t nesting_level = 0;
|
||||
|
||||
std::size_t pos_after_last_sep = 0;
|
||||
std::size_t pos_after_2ndlast_sep = 0;
|
||||
|
||||
for (std::size_t p = 0; p < s.size(); ++p) {
|
||||
char ch = s[p];
|
||||
|
||||
if (ch == '<' || ch == '(')
|
||||
++nesting_level;
|
||||
|
||||
if (nesting_level == 0) {
|
||||
if ((ch == ':')
|
||||
&& (p+1 < s.size())
|
||||
&& s[p+1] == ':')
|
||||
{
|
||||
pos_after_2ndlast_sep = pos_after_last_sep;
|
||||
pos_after_last_sep = p+2;
|
||||
++p; /* skipping 1st : in separator */
|
||||
}
|
||||
}
|
||||
|
||||
if (ch == '>' || ch == ')')
|
||||
--nesting_level;
|
||||
}
|
||||
|
||||
std::size_t retval = (last_flag ? pos_after_last_sep : pos_after_2ndlast_sep);
|
||||
|
||||
return retval;
|
||||
} /*find_toplevel_sep*/
|
||||
|
||||
/* fib(int, char **) --> fib
|
||||
* quux(std::vector<std::size_t, std::allocator<std::size_t>>) -> quux
|
||||
* foo::bar<std::vector<char>>() -> foo::bar
|
||||
*/
|
||||
static void print_aux(std::ostream & os, std::string_view const & s) {
|
||||
//std::cerr << "print_aux: s=[" << s << "]" << std::endl;
|
||||
|
||||
/* strategy:
|
||||
* - print left-to-right, omit anything between matching <> or () pairs.
|
||||
* - don't keep track of which is which, so would also match < with ) etc;
|
||||
* this acceptable since pretty functions won't visit this corner case
|
||||
*/
|
||||
std::size_t nesting_level = 0;
|
||||
|
||||
/* index of next match within string 'operator()'.
|
||||
* if we would print 'operator', and it's followed by trailing paren pair,
|
||||
* then don't exclude the trailing ()
|
||||
*/
|
||||
std::int32_t match_operator_ix = 0;
|
||||
constexpr char const * c_target_str = "operator(";
|
||||
|
||||
for (char ch : s) {
|
||||
//std::cerr << "print_aux: ch=[" << ch << "]" << ", nesting_level=" << nesting_level << ", match_operator_ix=" << match_operator_ix << std::endl;
|
||||
|
||||
/* looking for match on 'operator(' at nesting level 0 */
|
||||
if ((nesting_level == 0) && (ch == c_target_str[match_operator_ix]) && (match_operator_ix < 9))
|
||||
++match_operator_ix;
|
||||
else
|
||||
match_operator_ix = 0;
|
||||
|
||||
/* don't increment nesting level if immediately after 'operator' */
|
||||
if (ch == '<') {
|
||||
++nesting_level;
|
||||
} else if (ch == '(') {
|
||||
if ((nesting_level == 0) && (match_operator_ix == 9)) {
|
||||
/* special case:
|
||||
* 012345678
|
||||
* operator(
|
||||
* at toplevel; don't count the '(' here toward nesting level
|
||||
*/
|
||||
;
|
||||
} else {
|
||||
++nesting_level;
|
||||
}
|
||||
}
|
||||
|
||||
if (nesting_level == 0)
|
||||
os << ch;
|
||||
|
||||
if (nesting_level > 0 && ((ch == '>') || (ch == ')')))
|
||||
--nesting_level;
|
||||
}
|
||||
} /*print_aux*/
|
||||
|
||||
private:
|
||||
/* FS_Simple | FS_Pretty (= FS_Literal) | FS_Streamlined */
|
||||
function_style style_;
|
||||
/* terminal color (controls vt100 escape) */
|
||||
color_spec_type color_spec_;
|
||||
/* e.g. __PRETTY_FUNCTION__ */
|
||||
std::string_view pretty_;
|
||||
}; /*function_name_impl*/
|
||||
|
||||
using function_name = function_name_impl<class function_name_impl_tag>;
|
||||
|
||||
inline std::ostream &
|
||||
operator<<(std::ostream & os,
|
||||
function_name const & fn)
|
||||
{
|
||||
/* set text color */
|
||||
|
||||
switch(fn.style()) {
|
||||
case function_style::literal:
|
||||
os << with_color(fn.colorspec(), fn.pretty());
|
||||
break;
|
||||
case function_style::pretty:
|
||||
os << "[" << with_color(fn.colorspec(), fn.pretty()) << "]";
|
||||
break;
|
||||
case function_style::streamlined:
|
||||
/* omit namespace qualifiers and template arguments */
|
||||
os << color_on(fn.colorspec());
|
||||
function_name::print_streamlined(os, fn.pretty());
|
||||
os << color_off();
|
||||
break;
|
||||
case function_style::simple:
|
||||
os << color_on(fn.colorspec());
|
||||
function_name::print_simple(os, fn.pretty());
|
||||
os << color_off();
|
||||
break;
|
||||
}
|
||||
|
||||
return os;
|
||||
} /*operator<<*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end function.hpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue