2022-05-05 18:57:32 +02:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP___FORMAT_CONTAINER_ADAPTOR_H
|
|
|
|
#define _LIBCPP___FORMAT_CONTAINER_ADAPTOR_H
|
|
|
|
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
|
|
# pragma GCC system_header
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <__config>
|
|
|
|
#include <__format/concepts.h>
|
|
|
|
#include <__format/formatter.h>
|
|
|
|
#include <__format/range_default_formatter.h>
|
2024-03-29 12:06:09 +01:00
|
|
|
#include <__fwd/queue.h>
|
|
|
|
#include <__fwd/stack.h>
|
2023-02-17 18:55:48 +01:00
|
|
|
#include <__ranges/ref_view.h>
|
2023-03-09 03:29:12 +01:00
|
|
|
#include <__type_traits/is_const.h>
|
|
|
|
#include <__type_traits/maybe_const.h>
|
2022-05-05 18:57:32 +02:00
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2023-02-14 00:56:09 +01:00
|
|
|
#if _LIBCPP_STD_VER >= 23
|
2022-05-05 18:57:32 +02:00
|
|
|
|
|
|
|
// [container.adaptors.format] only specifies the library should provide the
|
|
|
|
// formatter specializations, not which header should provide them.
|
|
|
|
// Since <format> includes a lot of headers, add these headers here instead of
|
|
|
|
// adding more dependencies like, locale, optinal, string, tuple, etc. to the
|
|
|
|
// adaptor headers. To use the format functions users already include <format>.
|
|
|
|
|
|
|
|
template <class _Adaptor, class _CharT>
|
2025-04-09 23:47:57 +02:00
|
|
|
struct __formatter_container_adaptor {
|
2022-05-05 18:57:32 +02:00
|
|
|
private:
|
2025-01-08 17:12:59 +01:00
|
|
|
using __maybe_const_container _LIBCPP_NODEBUG = __fmt_maybe_const<typename _Adaptor::container_type, _CharT>;
|
|
|
|
using __maybe_const_adaptor _LIBCPP_NODEBUG = __maybe_const<is_const_v<__maybe_const_container>, _Adaptor>;
|
2023-02-17 18:55:48 +01:00
|
|
|
formatter<ranges::ref_view<__maybe_const_container>, _CharT> __underlying_;
|
2022-05-05 18:57:32 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
template <class _ParseContext>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI constexpr typename _ParseContext::iterator parse(_ParseContext& __ctx) {
|
|
|
|
return __underlying_.parse(__ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class _FormatContext>
|
|
|
|
_LIBCPP_HIDE_FROM_ABI typename _FormatContext::iterator
|
|
|
|
format(__maybe_const_adaptor& __adaptor, _FormatContext& __ctx) const {
|
|
|
|
return __underlying_.format(__adaptor.__get_container(), __ctx);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class _CharT, class _Tp, formattable<_CharT> _Container>
|
2025-04-09 23:47:57 +02:00
|
|
|
struct formatter<queue<_Tp, _Container>, _CharT>
|
2022-05-05 18:57:32 +02:00
|
|
|
: public __formatter_container_adaptor<queue<_Tp, _Container>, _CharT> {};
|
|
|
|
|
|
|
|
template <class _CharT, class _Tp, class _Container, class _Compare>
|
2025-04-09 23:47:57 +02:00
|
|
|
struct formatter<priority_queue<_Tp, _Container, _Compare>, _CharT>
|
2022-05-05 18:57:32 +02:00
|
|
|
: public __formatter_container_adaptor<priority_queue<_Tp, _Container, _Compare>, _CharT> {};
|
|
|
|
|
|
|
|
template <class _CharT, class _Tp, formattable<_CharT> _Container>
|
2025-04-09 23:47:57 +02:00
|
|
|
struct formatter<stack<_Tp, _Container>, _CharT>
|
2022-05-05 18:57:32 +02:00
|
|
|
: public __formatter_container_adaptor<stack<_Tp, _Container>, _CharT> {};
|
|
|
|
|
2024-08-30 12:07:07 -04:00
|
|
|
#endif // _LIBCPP_STD_VER >= 23
|
2022-05-05 18:57:32 +02:00
|
|
|
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
|
|
|
#endif // _LIBCPP___FORMAT_CONTAINER_ADAPTOR_H
|