2020-09-19 14:47:35 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
* 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 THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Array.h>
|
2020-10-02 16:21:30 +03:00
|
|
|
#include <AK/GenericLexer.h>
|
2020-09-22 14:05:40 +03:00
|
|
|
#include <AK/StringView.h>
|
2020-09-19 14:47:35 +03:00
|
|
|
|
2020-10-15 14:46:00 +03:00
|
|
|
#ifndef KERNEL
|
|
|
|
# include <stdio.h>
|
|
|
|
#endif
|
2020-09-23 14:21:18 +03:00
|
|
|
|
2020-09-19 14:47:35 +03:00
|
|
|
namespace AK {
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
class TypeErasedFormatParams;
|
|
|
|
class FormatParser;
|
|
|
|
class FormatBuilder;
|
|
|
|
|
2020-09-19 14:47:35 +03:00
|
|
|
template<typename T, typename = void>
|
2020-10-07 15:01:59 +03:00
|
|
|
struct Formatter {
|
|
|
|
using __no_formatter_defined = void;
|
|
|
|
};
|
2020-09-19 14:47:35 +03:00
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
constexpr size_t max_format_arguments = 256;
|
|
|
|
|
2020-09-25 14:11:29 +03:00
|
|
|
struct TypeErasedParameter {
|
2020-09-27 19:09:14 +03:00
|
|
|
enum class Type {
|
|
|
|
UInt8,
|
|
|
|
UInt16,
|
|
|
|
UInt32,
|
|
|
|
UInt64,
|
|
|
|
Int8,
|
|
|
|
Int16,
|
|
|
|
Int32,
|
|
|
|
Int64,
|
|
|
|
Custom
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
static Type get_type()
|
|
|
|
{
|
|
|
|
if (IsSame<T, u8>::value)
|
|
|
|
return Type::UInt8;
|
|
|
|
if (IsSame<T, u16>::value)
|
|
|
|
return Type::UInt16;
|
|
|
|
if (IsSame<T, u32>::value)
|
|
|
|
return Type::UInt32;
|
|
|
|
if (IsSame<T, u64>::value)
|
|
|
|
return Type::UInt64;
|
|
|
|
if (IsSame<T, i8>::value)
|
|
|
|
return Type::Int8;
|
|
|
|
if (IsSame<T, i16>::value)
|
|
|
|
return Type::Int16;
|
|
|
|
if (IsSame<T, i32>::value)
|
|
|
|
return Type::Int32;
|
|
|
|
if (IsSame<T, i64>::value)
|
|
|
|
return Type::Int64;
|
|
|
|
|
|
|
|
return Type::Custom;
|
|
|
|
}
|
|
|
|
|
2020-09-25 14:11:29 +03:00
|
|
|
const void* value;
|
2020-09-27 19:09:14 +03:00
|
|
|
Type type;
|
2020-10-02 16:21:30 +03:00
|
|
|
void (*formatter)(TypeErasedFormatParams&, FormatBuilder&, FormatParser&, const void* value);
|
2020-09-28 12:44:24 +03:00
|
|
|
};
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
class FormatParser : public GenericLexer {
|
2020-09-28 12:44:24 +03:00
|
|
|
public:
|
2020-10-02 16:21:30 +03:00
|
|
|
struct FormatSpecifier {
|
|
|
|
StringView flags;
|
|
|
|
size_t index;
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit FormatParser(StringView input);
|
|
|
|
|
|
|
|
StringView consume_literal();
|
|
|
|
bool consume_number(size_t& value);
|
|
|
|
bool consume_specifier(FormatSpecifier& specifier);
|
|
|
|
bool consume_replacement_field(size_t& index);
|
|
|
|
};
|
|
|
|
|
|
|
|
class FormatBuilder {
|
|
|
|
public:
|
|
|
|
enum class Align {
|
|
|
|
Default,
|
|
|
|
Left,
|
|
|
|
Center,
|
|
|
|
Right,
|
|
|
|
};
|
|
|
|
enum class SignMode {
|
|
|
|
OnlyIfNeeded,
|
|
|
|
Always,
|
|
|
|
Reserved,
|
|
|
|
Default = OnlyIfNeeded,
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit FormatBuilder(StringBuilder& builder)
|
|
|
|
: m_builder(builder)
|
2020-09-28 12:44:24 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
void put_padding(char fill, size_t amount);
|
|
|
|
|
|
|
|
void put_literal(StringView value);
|
|
|
|
|
|
|
|
void put_string(
|
|
|
|
StringView value,
|
|
|
|
Align align = Align::Left,
|
|
|
|
size_t min_width = 0,
|
|
|
|
size_t max_width = NumericLimits<size_t>::max(),
|
|
|
|
char fill = ' ');
|
|
|
|
|
|
|
|
void put_u64(
|
|
|
|
u64 value,
|
|
|
|
u8 base = 10,
|
|
|
|
bool prefix = false,
|
|
|
|
bool upper_case = false,
|
|
|
|
bool zero_pad = false,
|
|
|
|
Align align = Align::Right,
|
|
|
|
size_t min_width = 0,
|
|
|
|
char fill = ' ',
|
|
|
|
SignMode sign_mode = SignMode::OnlyIfNeeded,
|
|
|
|
bool is_negative = false);
|
|
|
|
|
|
|
|
void put_i64(
|
|
|
|
i64 value,
|
|
|
|
u8 base = 10,
|
|
|
|
bool prefix = false,
|
|
|
|
bool upper_case = false,
|
|
|
|
bool zero_pad = false,
|
|
|
|
Align align = Align::Right,
|
|
|
|
size_t min_width = 0,
|
|
|
|
char fill = ' ',
|
|
|
|
SignMode sign_mode = SignMode::OnlyIfNeeded);
|
|
|
|
|
2020-11-09 13:34:44 +03:00
|
|
|
#ifndef KERNEL
|
|
|
|
void put_f64(
|
|
|
|
double value,
|
|
|
|
u8 base = 10,
|
|
|
|
bool upper_case = false,
|
|
|
|
Align align = Align::Right,
|
|
|
|
size_t min_width = 0,
|
|
|
|
size_t precision = 6,
|
|
|
|
char fill = ' ',
|
|
|
|
SignMode sign_mode = SignMode::OnlyIfNeeded);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const StringBuilder& builder() const
|
|
|
|
{
|
|
|
|
return m_builder;
|
|
|
|
}
|
2020-10-02 16:21:30 +03:00
|
|
|
StringBuilder& builder() { return m_builder; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
StringBuilder& m_builder;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TypeErasedFormatParams {
|
|
|
|
public:
|
|
|
|
Span<const TypeErasedParameter> parameters() const { return m_parameters; }
|
2020-09-28 12:44:24 +03:00
|
|
|
|
2020-10-07 18:21:00 +03:00
|
|
|
void set_parameters(Span<const TypeErasedParameter> parameters) { m_parameters = parameters; }
|
2020-09-28 12:44:24 +03:00
|
|
|
size_t take_next_index() { return m_next_index++; }
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
size_t decode(size_t value, size_t default_value = 0);
|
|
|
|
|
2020-09-28 12:44:24 +03:00
|
|
|
private:
|
|
|
|
Span<const TypeErasedParameter> m_parameters;
|
|
|
|
size_t m_next_index { 0 };
|
2020-09-25 14:11:29 +03:00
|
|
|
};
|
|
|
|
|
2020-09-19 14:47:35 +03:00
|
|
|
template<typename T>
|
2020-10-02 16:21:30 +03:00
|
|
|
void __format_value(TypeErasedFormatParams& params, FormatBuilder& builder, FormatParser& parser, const void* value)
|
2020-09-19 14:47:35 +03:00
|
|
|
{
|
|
|
|
Formatter<T> formatter;
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
formatter.parse(params, parser);
|
|
|
|
formatter.format(params, builder, *static_cast<const T*>(value));
|
2020-09-19 14:47:35 +03:00
|
|
|
}
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
template<typename... Parameters>
|
|
|
|
class VariadicFormatParams : public TypeErasedFormatParams {
|
|
|
|
public:
|
|
|
|
static_assert(sizeof...(Parameters) <= max_format_arguments);
|
2020-09-19 14:47:35 +03:00
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
explicit VariadicFormatParams(const Parameters&... parameters)
|
2020-10-07 18:21:00 +03:00
|
|
|
: m_data({ TypeErasedParameter { ¶meters, TypeErasedParameter::get_type<Parameters>(), __format_value<Parameters> }... })
|
2020-10-02 16:21:30 +03:00
|
|
|
{
|
2020-10-07 18:21:00 +03:00
|
|
|
this->set_parameters(m_data);
|
2020-10-02 16:21:30 +03:00
|
|
|
}
|
2020-09-19 14:47:35 +03:00
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
private:
|
|
|
|
Array<TypeErasedParameter, sizeof...(Parameters)> m_data;
|
|
|
|
};
|
2020-09-25 14:11:29 +03:00
|
|
|
|
2020-10-06 14:32:00 +03:00
|
|
|
// We use the same format for most types for consistency. This is taken directly from
|
|
|
|
// std::format. One difference is that we are not counting the width or sign towards the
|
|
|
|
// total width when calculating zero padding for numbers.
|
2020-09-25 14:11:29 +03:00
|
|
|
// https://en.cppreference.com/w/cpp/utility/format/formatter#Standard_format_specification
|
|
|
|
struct StandardFormatter {
|
|
|
|
enum class Mode {
|
|
|
|
Default,
|
|
|
|
Binary,
|
2020-09-26 16:26:14 +03:00
|
|
|
BinaryUppercase,
|
2020-09-25 14:11:29 +03:00
|
|
|
Decimal,
|
|
|
|
Octal,
|
|
|
|
Hexadecimal,
|
2020-09-26 16:26:14 +03:00
|
|
|
HexadecimalUppercase,
|
2020-09-25 14:11:29 +03:00
|
|
|
Character,
|
|
|
|
String,
|
|
|
|
Pointer,
|
2020-11-09 13:34:44 +03:00
|
|
|
Float,
|
|
|
|
Hexfloat,
|
|
|
|
HexfloatUppercase,
|
2020-09-25 14:11:29 +03:00
|
|
|
};
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
static constexpr size_t value_not_set = NumericLimits<size_t>::max();
|
|
|
|
static constexpr size_t value_from_next_arg = NumericLimits<size_t>::max() - 1;
|
|
|
|
static constexpr size_t value_from_arg = NumericLimits<size_t>::max() - max_format_arguments - 2;
|
2020-09-25 14:11:29 +03:00
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
FormatBuilder::Align m_align = FormatBuilder::Align::Default;
|
|
|
|
FormatBuilder::SignMode m_sign_mode = FormatBuilder::SignMode::OnlyIfNeeded;
|
2020-09-25 14:11:29 +03:00
|
|
|
Mode m_mode = Mode::Default;
|
|
|
|
bool m_alternative_form = false;
|
|
|
|
char m_fill = ' ';
|
|
|
|
bool m_zero_pad = false;
|
|
|
|
size_t m_width = value_not_set;
|
|
|
|
size_t m_precision = value_not_set;
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
void parse(TypeErasedFormatParams&, FormatParser&);
|
2020-09-19 14:47:35 +03:00
|
|
|
};
|
|
|
|
|
2020-10-06 14:57:20 +03:00
|
|
|
template<typename T>
|
|
|
|
struct Formatter<T, typename EnableIf<IsIntegral<T>::value>::Type> : StandardFormatter {
|
|
|
|
Formatter() { }
|
|
|
|
explicit Formatter(StandardFormatter formatter)
|
|
|
|
: StandardFormatter(formatter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void format(TypeErasedFormatParams&, FormatBuilder&, T value);
|
|
|
|
};
|
|
|
|
|
2020-09-19 14:47:35 +03:00
|
|
|
template<>
|
2020-09-25 14:11:29 +03:00
|
|
|
struct Formatter<StringView> : StandardFormatter {
|
2020-09-30 14:26:24 +03:00
|
|
|
Formatter() { }
|
|
|
|
explicit Formatter(StandardFormatter formatter)
|
|
|
|
: StandardFormatter(formatter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
void format(TypeErasedFormatParams&, FormatBuilder&, StringView value);
|
2020-09-23 14:21:18 +03:00
|
|
|
};
|
2020-09-23 17:31:34 +03:00
|
|
|
template<>
|
|
|
|
struct Formatter<const char*> : Formatter<StringView> {
|
2020-10-06 14:57:20 +03:00
|
|
|
void format(TypeErasedFormatParams& params, FormatBuilder& builder, const char* value)
|
|
|
|
{
|
|
|
|
if (m_mode == Mode::Pointer) {
|
|
|
|
Formatter<FlatPtr> formatter { *this };
|
|
|
|
formatter.format(params, builder, reinterpret_cast<FlatPtr>(value));
|
|
|
|
} else {
|
|
|
|
Formatter<StringView>::format(params, builder, value);
|
|
|
|
}
|
|
|
|
}
|
2020-09-23 17:31:34 +03:00
|
|
|
};
|
|
|
|
template<>
|
2020-10-06 14:57:20 +03:00
|
|
|
struct Formatter<char*> : Formatter<const char*> {
|
2020-09-23 17:31:34 +03:00
|
|
|
};
|
2020-09-23 14:21:18 +03:00
|
|
|
template<size_t Size>
|
2020-10-06 14:57:20 +03:00
|
|
|
struct Formatter<char[Size]> : Formatter<const char*> {
|
2020-09-19 14:47:35 +03:00
|
|
|
};
|
|
|
|
template<>
|
2020-09-23 14:21:18 +03:00
|
|
|
struct Formatter<String> : Formatter<StringView> {
|
2020-09-19 14:47:35 +03:00
|
|
|
};
|
2020-10-04 14:50:58 +03:00
|
|
|
template<>
|
|
|
|
struct Formatter<FlyString> : Formatter<StringView> {
|
|
|
|
};
|
2020-09-19 14:47:35 +03:00
|
|
|
|
2020-09-30 15:38:47 +03:00
|
|
|
template<typename T>
|
|
|
|
struct Formatter<T*> : StandardFormatter {
|
2020-10-02 16:21:30 +03:00
|
|
|
void format(TypeErasedFormatParams& params, FormatBuilder& builder, T* value)
|
2020-09-30 15:38:47 +03:00
|
|
|
{
|
2020-10-07 13:47:35 +03:00
|
|
|
if (m_mode == Mode::Default)
|
|
|
|
m_mode = Mode::Pointer;
|
|
|
|
|
2020-09-30 15:38:47 +03:00
|
|
|
Formatter<FlatPtr> formatter { *this };
|
2020-10-02 16:21:30 +03:00
|
|
|
formatter.format(params, builder, reinterpret_cast<FlatPtr>(value));
|
2020-09-30 15:38:47 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-04 14:49:19 +03:00
|
|
|
template<>
|
2020-10-07 15:25:19 +03:00
|
|
|
struct Formatter<char> : StandardFormatter {
|
|
|
|
void format(TypeErasedFormatParams&, FormatBuilder&, char value);
|
2020-10-04 14:49:19 +03:00
|
|
|
};
|
2020-09-30 14:26:24 +03:00
|
|
|
template<>
|
|
|
|
struct Formatter<bool> : StandardFormatter {
|
2020-10-02 16:21:30 +03:00
|
|
|
void format(TypeErasedFormatParams&, FormatBuilder&, bool value);
|
2020-09-30 14:26:24 +03:00
|
|
|
};
|
|
|
|
|
2020-11-09 13:34:44 +03:00
|
|
|
#ifndef KERNEL
|
|
|
|
template<>
|
|
|
|
struct Formatter<float> : StandardFormatter {
|
|
|
|
void format(TypeErasedFormatParams&, FormatBuilder&, float value);
|
|
|
|
};
|
|
|
|
template<>
|
|
|
|
struct Formatter<double> : StandardFormatter {
|
|
|
|
Formatter() { }
|
|
|
|
explicit Formatter(StandardFormatter formatter)
|
|
|
|
: StandardFormatter(formatter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void format(TypeErasedFormatParams&, FormatBuilder&, double value);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2020-10-02 16:21:30 +03:00
|
|
|
void vformat(StringBuilder& builder, StringView fmtstr, TypeErasedFormatParams);
|
|
|
|
void vformat(const LogStream& stream, StringView fmtstr, TypeErasedFormatParams);
|
2020-09-22 14:11:05 +03:00
|
|
|
|
2020-10-04 16:35:43 +03:00
|
|
|
#ifndef KERNEL
|
2020-10-15 14:46:00 +03:00
|
|
|
void vout(FILE*, StringView fmtstr, TypeErasedFormatParams, bool newline = false);
|
2020-10-04 16:35:43 +03:00
|
|
|
|
|
|
|
template<typename... Parameters>
|
2020-11-09 12:47:19 +03:00
|
|
|
void out(FILE* file, StringView fmtstr, const Parameters&... parameters) { vout(file, fmtstr, VariadicFormatParams { parameters... }); }
|
2020-10-04 16:35:43 +03:00
|
|
|
template<typename... Parameters>
|
2020-10-15 14:46:00 +03:00
|
|
|
void outln(FILE* file, StringView fmtstr, const Parameters&... parameters) { vout(file, fmtstr, VariadicFormatParams { parameters... }, true); }
|
2020-10-07 15:00:59 +03:00
|
|
|
template<typename... Parameters>
|
2020-10-15 14:46:00 +03:00
|
|
|
void outln(FILE* file, const char* fmtstr, const Parameters&... parameters) { vout(file, fmtstr, VariadicFormatParams { parameters... }, true); }
|
|
|
|
inline void outln(FILE* file) { fputc('\n', file); }
|
2020-10-04 16:35:43 +03:00
|
|
|
|
2020-10-15 14:46:00 +03:00
|
|
|
template<typename... Parameters>
|
2020-11-09 12:47:19 +03:00
|
|
|
void out(StringView fmtstr, const Parameters&... parameters) { out(stdout, fmtstr, parameters...); }
|
2020-10-15 14:46:00 +03:00
|
|
|
template<typename... Parameters>
|
|
|
|
void outln(StringView fmtstr, const Parameters&... parameters) { outln(stdout, fmtstr, parameters...); }
|
|
|
|
template<typename... Parameters>
|
|
|
|
void outln(const char* fmtstr, const Parameters&... parameters) { outln(stdout, fmtstr, parameters...); }
|
|
|
|
inline void outln() { outln(stdout); }
|
2020-10-04 16:35:43 +03:00
|
|
|
|
|
|
|
template<typename... Parameters>
|
2020-11-09 12:47:19 +03:00
|
|
|
void warn(StringView fmtstr, const Parameters&... parameters) { out(stderr, fmtstr, parameters...); }
|
2020-10-04 16:35:43 +03:00
|
|
|
template<typename... Parameters>
|
2020-10-15 14:46:00 +03:00
|
|
|
void warnln(StringView fmtstr, const Parameters&... parameters) { outln(stderr, fmtstr, parameters...); }
|
2020-10-07 15:00:59 +03:00
|
|
|
template<typename... Parameters>
|
2020-10-15 14:46:00 +03:00
|
|
|
void warnln(const char* fmtstr, const Parameters&... parameters) { outln(stderr, fmtstr, parameters...); }
|
|
|
|
inline void warnln() { outln(stderr); }
|
2020-10-04 16:35:43 +03:00
|
|
|
#endif
|
|
|
|
|
2020-10-08 14:26:16 +03:00
|
|
|
void vdbgln(StringView fmtstr, TypeErasedFormatParams);
|
2020-10-04 16:35:43 +03:00
|
|
|
|
|
|
|
template<typename... Parameters>
|
2020-10-08 14:26:16 +03:00
|
|
|
void dbgln(StringView fmtstr, const Parameters&... parameters) { vdbgln(fmtstr, VariadicFormatParams { parameters... }); }
|
2020-10-07 15:00:59 +03:00
|
|
|
template<typename... Parameters>
|
|
|
|
void dbgln(const char* fmtstr, const Parameters&... parameters) { dbgln(StringView { fmtstr }, parameters...); }
|
2020-10-04 16:35:43 +03:00
|
|
|
|
2020-10-07 15:01:59 +03:00
|
|
|
template<typename T, typename = void>
|
|
|
|
struct HasFormatter : TrueType {
|
|
|
|
};
|
|
|
|
template<typename T>
|
|
|
|
struct HasFormatter<T, typename Formatter<T>::__no_formatter_defined> : FalseType {
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class FormatIfSupported {
|
|
|
|
public:
|
|
|
|
explicit FormatIfSupported(const T& value)
|
|
|
|
: m_value(value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const T& value() const { return m_value; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const T& m_value;
|
|
|
|
};
|
|
|
|
template<typename T, bool Supported = false>
|
|
|
|
struct __FormatIfSupported : Formatter<StringView> {
|
|
|
|
void format(TypeErasedFormatParams& params, FormatBuilder& builder, const FormatIfSupported<T>&)
|
|
|
|
{
|
|
|
|
Formatter<StringView>::format(params, builder, "?");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename T>
|
|
|
|
struct __FormatIfSupported<T, true> : Formatter<T> {
|
|
|
|
void format(TypeErasedFormatParams& params, FormatBuilder& builder, const FormatIfSupported<T>& value)
|
|
|
|
{
|
|
|
|
Formatter<T>::format(params, builder, value.value());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename T>
|
|
|
|
struct Formatter<FormatIfSupported<T>> : __FormatIfSupported<T, HasFormatter<T>::value> {
|
|
|
|
};
|
|
|
|
|
2020-09-22 14:11:05 +03:00
|
|
|
} // namespace AK
|
2020-10-04 16:35:43 +03:00
|
|
|
|
|
|
|
#ifndef KERNEL
|
2020-11-09 12:47:19 +03:00
|
|
|
using AK::out;
|
2020-10-04 16:35:43 +03:00
|
|
|
using AK::outln;
|
|
|
|
|
2020-11-09 12:47:19 +03:00
|
|
|
using AK::warn;
|
2020-10-04 16:35:43 +03:00
|
|
|
using AK::warnln;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using AK::dbgln;
|
2020-10-07 15:01:59 +03:00
|
|
|
|
|
|
|
using AK::FormatIfSupported;
|