File: quoted_traits.compile.pass.cpp

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (166 lines) | stat: -rw-r--r-- 7,853 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

// UNSUPPORTED: c++03, c++11

// <iomanip>

// std::quoted
//   Verify that the result type of std::quoted can be streamed to
//   (and from) ostreams with the correct CharTraits, and not those
//   with the wrong CharTraits. To avoid our having to create working
//   ostreams with weird CharTraits, this is a compile-only test.

#include <iomanip>
#include <istream>
#include <ostream>
#include <string>
#include <string_view>
#include <type_traits>

#include "test_allocator.h"
#include "test_macros.h"

template<class IS, class Q>
decltype(std::declval<IS>() >> std::declval<Q>(), std::true_type())
has_rightshift_impl(int) { return std::true_type(); }

template<class IS, class Q>
std::false_type
has_rightshift_impl(long) { return std::false_type(); }

template<class IS, class Q>
struct HasRightShift : decltype(has_rightshift_impl<IS, Q>(0)) {};

template<class OS, class Q>
decltype(std::declval<OS>() << std::declval<Q>(), std::true_type())
has_leftshift_impl(int) { return std::true_type(); }

template<class OS, class Q>
std::false_type
has_leftshift_impl(long) { return std::false_type(); }

template<class OS, class Q>
struct HasLeftShift : decltype(has_leftshift_impl<OS, Q>(0)) {};

template<class CharT>
struct FakeCharTraits : std::char_traits<CharT> {};

void test_string_literal()
{
  using Q = decltype(std::quoted("hello"));
  static_assert( HasLeftShift<std::ostream&, Q>::value, "");
  static_assert(!HasRightShift<std::istream&, Q>::value, "");
  static_assert( HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, Q>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, Q>::value, "");

#ifndef TEST_HAS_NO_WIDE_CHARACTERS
  using WQ = decltype(std::quoted(L"hello"));
  static_assert( HasLeftShift<std::wostream&, WQ>::value, "");
  static_assert(!HasRightShift<std::wistream&, WQ>::value, "");
  static_assert( HasLeftShift<std::basic_ostream<wchar_t, FakeCharTraits<wchar_t>>&, WQ>::value, "");
  static_assert(!HasRightShift<std::basic_istream<wchar_t, FakeCharTraits<wchar_t>>&, WQ>::value, "");

  static_assert(!HasLeftShift<std::ostream&, WQ>::value, "");
  static_assert(!HasLeftShift<std::wostream&, Q>::value, "");
#endif // TEST_HAS_NO_WIDE_CHARACTERS
}

void test_std_string()
{
  std::string s = "hello";
  const auto& cs = s;
  using Q = decltype(std::quoted(s));
  using CQ = decltype(std::quoted(cs));
  static_assert( HasLeftShift<std::ostream&, Q>::value, "");
  static_assert( HasRightShift<std::istream&, Q>::value, "");
  static_assert( HasLeftShift<std::ostream&, CQ>::value, "");
  static_assert(!HasRightShift<std::istream&, CQ>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, Q>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, Q>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, CQ>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, CQ>::value, "");

  std::basic_string<char, FakeCharTraits<char>, test_allocator<char>> st = "hello";
  const auto& cst = st;
  using QT = decltype(std::quoted(st));
  using CQT = decltype(std::quoted(cst));
  static_assert(!HasLeftShift<std::ostream&, QT>::value, "");
  static_assert(!HasRightShift<std::istream&, QT>::value, "");
  static_assert(!HasLeftShift<std::ostream&, CQT>::value, "");
  static_assert(!HasRightShift<std::istream&, CQT>::value, "");
  static_assert( HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, QT>::value, "");
  static_assert( HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, QT>::value, "");
  static_assert( HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, CQT>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, CQT>::value, "");

#ifndef TEST_HAS_NO_WIDE_CHARACTERS
  std::wstring ws = L"hello";
  const auto& cws = ws;
  using WQ = decltype(std::quoted(ws));
  using CWQ = decltype(std::quoted(cws));
  static_assert( HasLeftShift<std::wostream&, WQ>::value, "");
  static_assert( HasRightShift<std::wistream&, WQ>::value, "");
  static_assert( HasLeftShift<std::wostream&, CWQ>::value, "");
  static_assert(!HasRightShift<std::wistream&, CWQ>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<wchar_t, FakeCharTraits<wchar_t>>&, WQ>::value, "");
  static_assert(!HasRightShift<std::basic_istream<wchar_t, FakeCharTraits<wchar_t>>&, WQ>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<wchar_t, FakeCharTraits<wchar_t>>&, CWQ>::value, "");
  static_assert(!HasRightShift<std::basic_istream<wchar_t, FakeCharTraits<wchar_t>>&, CWQ>::value, "");

  static_assert(!HasLeftShift<std::ostream&, WQ>::value, "");
  static_assert(!HasLeftShift<std::wostream&, Q>::value, "");
#endif // TEST_HAS_NO_WIDE_CHARACTERS
}

void test_std_string_view()
{
  std::string_view s = "hello";
  const auto& cs = s;
  using Q = decltype(std::quoted(s));
  using CQ = decltype(std::quoted(cs));
  static_assert( HasLeftShift<std::ostream&, Q>::value, "");
  static_assert(!HasRightShift<std::istream&, Q>::value, "");
  static_assert( HasLeftShift<std::ostream&, CQ>::value, "");
  static_assert(!HasRightShift<std::istream&, CQ>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, Q>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, Q>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, CQ>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, CQ>::value, "");

  std::basic_string_view<char, FakeCharTraits<char>> st = "hello";
  const auto& cst = st;
  using QT = decltype(std::quoted(st));
  using CQT = decltype(std::quoted(cst));
  static_assert(!HasLeftShift<std::ostream&, QT>::value, "");
  static_assert(!HasRightShift<std::istream&, QT>::value, "");
  static_assert(!HasLeftShift<std::ostream&, CQT>::value, "");
  static_assert(!HasRightShift<std::istream&, CQT>::value, "");
  static_assert( HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, QT>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, QT>::value, "");
  static_assert( HasLeftShift<std::basic_ostream<char, FakeCharTraits<char>>&, CQT>::value, "");
  static_assert(!HasRightShift<std::basic_istream<char, FakeCharTraits<char>>&, CQT>::value, "");

#ifndef TEST_HAS_NO_WIDE_CHARACTERS
  std::wstring_view ws = L"hello";
  const auto& cws = ws;
  using WQ = decltype(std::quoted(ws));
  using CWQ = decltype(std::quoted(cws));
  static_assert( HasLeftShift<std::wostream&, WQ>::value, "");
  static_assert(!HasRightShift<std::wistream&, WQ>::value, "");
  static_assert( HasLeftShift<std::wostream&, CWQ>::value, "");
  static_assert(!HasRightShift<std::wistream&, CWQ>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<wchar_t, FakeCharTraits<wchar_t>>&, WQ>::value, "");
  static_assert(!HasRightShift<std::basic_istream<wchar_t, FakeCharTraits<wchar_t>>&, WQ>::value, "");
  static_assert(!HasLeftShift<std::basic_ostream<wchar_t, FakeCharTraits<wchar_t>>&, CWQ>::value, "");
  static_assert(!HasRightShift<std::basic_istream<wchar_t, FakeCharTraits<wchar_t>>&, CWQ>::value, "");

  static_assert(!HasLeftShift<std::ostream&, WQ>::value, "");
  static_assert(!HasLeftShift<std::wostream&, Q>::value, "");
#endif // TEST_HAS_NO_WIDE_CHARACTERS
}