/* * Copyright (C) 2022 Riyyi * * SPDX-License-Identifier: MIT */ #include // size_t #include // int32_t, uint32_t, int64_t, #include // strlen #include #include #include "util/format/builder.h" #include "util/format/formatter.h" #include "util/format/parser.h" namespace Util::Format { // Integral template<> void Formatter::format(Builder& builder, int32_t value) const { builder.putI32(value); } template<> void Formatter::format(Builder& builder, uint32_t value) const { builder.putU32(value); } template<> void Formatter::format(Builder& builder, int64_t value) const { builder.putI64(value); } template<> void Formatter::format(Builder& builder, size_t value) const { builder.putU64(value); } // Floating point template<> void Formatter::format(Builder& builder, float value) const { if (specifier.precision < 0) { builder.putF32(value); } else { builder.putF32(value, specifier.precision); } } template<> void Formatter::format(Builder& builder, double value) const { if (specifier.precision < 0) { builder.putF64(value); return; } builder.putF64(value, specifier.precision); } // Char template<> void Formatter::format(Builder& builder, char value) const { builder.putCharacter(value); } template<> void Formatter::format(Builder& builder, bool value) const { builder.putString(value ? "true" : "false"); } // String template<> void Formatter::format(Builder& builder, std::string_view value) const { if (specifier.align == Builder::Align::None) { builder.putString(value, specifier.width); return; } builder.putString(value, specifier.width, specifier.align, specifier.fill); } void Formatter::format(Builder& builder, const char* value) const { Formatter::format( builder, value != nullptr ? std::string_view { value, strlen(value) } : "(nil)"); } // Pointer void Formatter::format(Builder& builder, std::nullptr_t) const { Formatter::format(builder, 0); } } // namespace Util::Format