forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade fmt to 10.1.1 (from 8.0.1) (facebookincubator#8434)
Summary: Pull Request resolved: facebookincubator#8434 fmt 8.0.1 is not upwards compatible to 9+ but backwards compatibility should not be an issue from what I could see in the logs and have done during facebookincubator#7700 (newst folly is compatible with fmt 10 but we built it with 8.0.1). Closes facebookincubator#7896 Pull Request resolved: facebookincubator#7941 Reviewed By: Yuhta Differential Revision: D52880145 Pulled By: kgpai fbshipit-source-id: 399ff634da95321a05b342adb2ead9f14792ed5c
- Loading branch information
1 parent
3cf1f34
commit a1b7a7a
Showing
76 changed files
with
703 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <fmt/format.h> | ||
#if FMT_VERSION >= 100100 | ||
#include <fmt/std.h> | ||
#endif | ||
|
||
#include <atomic> | ||
#include <bitset> | ||
#include <string_view> | ||
#include <system_error> | ||
#include <type_traits> | ||
#include <vector> | ||
|
||
template <typename Char> | ||
struct fmt::formatter<std::errc, Char> | ||
: formatter<std::underlying_type<std::errc>::type, Char> { | ||
template <typename FormatContext> | ||
auto format(std::errc v, FormatContext& ctx) const -> decltype(ctx.out()) { | ||
using underlying_type = std::underlying_type<std::errc>::type; | ||
return formatter<underlying_type, Char>::format( | ||
static_cast<underlying_type>(v), ctx); | ||
} | ||
}; | ||
|
||
#if FMT_VERSION < 100100 | ||
// This should be 100101 but FMT_VERSION was not bumped in 10.1.1 | ||
// but under a month has passed since 10.1.0 release so we can assume 10.1.1 | ||
// | ||
// Backport from fmt 10.1.1 see fmtlib/fmt#3574 | ||
// Formats std::atomic | ||
template <typename T, typename Char> | ||
struct fmt::formatter< | ||
std::atomic<T>, | ||
Char, | ||
std::enable_if_t<fmt::is_formattable<T, Char>::value>> | ||
: formatter<T, Char> { | ||
template <typename FormatContext> | ||
auto format(const std::atomic<T>& v, FormatContext& ctx) const | ||
-> decltype(ctx.out()) { | ||
return formatter<T, Char>::format(v.load(), ctx); | ||
} | ||
}; | ||
#endif | ||
|
||
#if FMT_VERSION < 100100 | ||
// Backport from fmt 10.1 see fmtlib/fmt#3570 | ||
// Formats std::vector<bool> | ||
namespace fmt::detail { | ||
template <typename T, typename Enable = void> | ||
struct has_flip : std::false_type {}; | ||
|
||
template <typename T> | ||
struct has_flip<T, std::void_t<decltype(std::declval<T>().flip())>> | ||
: std::true_type {}; | ||
|
||
template <typename T> | ||
struct is_bit_reference_like { | ||
static constexpr const bool value = std::is_convertible<T, bool>::value && | ||
std::is_nothrow_assignable<T, bool>::value && has_flip<T>::value; | ||
}; | ||
|
||
#ifdef _LIBCPP_VERSION | ||
|
||
// Workaround for libc++ incompatibility with C++ standard. | ||
// According to the Standard, `bitset::operator[] const` returns bool. | ||
template <typename C> | ||
struct is_bit_reference_like<std::__bit_const_reference<C>> { | ||
static constexpr const bool value = true; | ||
}; | ||
|
||
#endif | ||
} // namespace fmt::detail | ||
|
||
// We can't use std::vector<bool, Allocator>::reference and | ||
// std::bitset<N>::reference because the compiler can't deduce Allocator and N | ||
// in partial specialization. | ||
template <typename BitRef, typename Char> | ||
struct fmt::formatter< | ||
BitRef, | ||
Char, | ||
std::enable_if_t<fmt::detail::is_bit_reference_like<BitRef>::value>> | ||
: formatter<bool, Char> { | ||
template <typename FormatContext> | ||
FMT_CONSTEXPR auto format(const BitRef& v, FormatContext& ctx) const | ||
-> decltype(ctx.out()) { | ||
return formatter<bool, Char>::format(v, ctx); | ||
} | ||
}; | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.