Skip to content

Latest commit

 

History

History
147 lines (127 loc) · 3.16 KB

formatter.md

File metadata and controls

147 lines (127 loc) · 3.16 KB

Custom Formatter

Define a custom type:

class my_value
{
public:
    char ch;
    int count;
};

Implement the formatter:

  • Ouput (ch, count) for empty specification, which is the default behavior.
  • Output ch for count times for s specification.
namespace papilio
{
    template <>
    class formatter<test_format::my_value>
    {
    public:
        template <typename ParseContext>
        auto parse(ParseContext& ctx)
        {
            auto it = ctx.begin();

            if(*it == U's')
            {
                m_as_str = true;
                ++it;
            }

            return it;
        }

        template <typename Context>
        auto format(const test_format::my_value& val, Context& ctx)
        {
            if(m_as_str)
            {
                using context_t = format_context_traits<Context>;
                context_t::append(ctx, val.ch, val.count);
                return ctx.out();
            }
            else
            {
                return format_to(ctx.out(), "({}, {})", val.ch, val.count);
            }
        }

    private:
        bool m_as_str = false;
    };
}

User code:

my_value my_val('B', 3);

format("{}", my_val); // Returns "(B, 3)"
format("{:s}", my_val); // Returns "BBB"

ADL format

If the custom formatter is not existed, the format found by ADL will be used:

// Simple ADL format
class use_adl
{
public:
    // ...

private:
    template <typename Context>
    friend auto format(const use_adl& val, Context& ctx)
    {
        using namespace papilio;

        using context_t = format_context_traits<Context>;
        context_t::append(ctx, "ADL");

        return ctx.out();
    }
};

// ADL format with arguments
class use_adl_ex
{
public:
    // ...

private:
    template <typename ParseContext, typename FormatContext>
    friend auto format(const use_adl_ex& val, ParseContext& parse_ctx, FormatContext& fmt_ctx)
    {
        using namespace papilio;

        bool use_uppercase = false;

        {
            auto it = parse_ctx.begin();
            if(*it == U'S')
            {
                use_uppercase = true;
                ++it;
            }

            parse_ctx.advance_to(it);
        }

        using context_t = format_context_traits<FormatContext>;
        if(use_uppercase)
            context_t::append(fmt_ctx, "ADL (EX)");
        else
            context_t::append(fmt_ctx, "adl (ex)");

        return fmt_ctx.out();
    }
};

User code:

format("{}", use_adl{}); // Returns "ADL"

format("{}", use_adl_ex{}); // Returns "adl (ex)"
format("{:S}", used_adl_ex{}); // Returns "ADL (EX)"

Overloaded operator<<

If a type does not implement the above format methods, but it has a overloaded operator<< of traditional C++, that overload will be used for outputting.

Disabled Formatter

Explicitly prevent a type from being formatted:

class format_disabled
{
public:
    // ...
};

namespace papilio
{
    template <typename CharT>
    struct formatter<format_disabled, CharT> : public disabled_formatter
    {};
}

The class format_disabled will not be formatted even if it implements other output method like operator<< or ADL format.