Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
e3b4c22e
Commit
e3b4c22e
authored
Oct 20, 2020
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify is_output_iterator
parent
da8278e1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
57 deletions
+47
-57
include/fmt/color.h
include/fmt/color.h
+2
-2
include/fmt/compile.h
include/fmt/compile.h
+5
-4
include/fmt/core.h
include/fmt/core.h
+16
-23
include/fmt/locale.h
include/fmt/locale.h
+7
-8
test/format-test.cc
test/format-test.cc
+17
-20
No files found.
include/fmt/color.h
View file @
e3b4c22e
...
...
@@ -567,7 +567,7 @@ inline std::basic_string<Char> format(const text_style& ts, const S& format_str,
Formats a string with the given text_style and writes the output to ``out``.
*/
template
<
typename
OutputIt
,
typename
Char
,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
>
::
value
)
>
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
Char
>
::
value
)
>
OutputIt
vformat_to
(
OutputIt
out
,
const
text_style
&
ts
,
basic_string_view
<
Char
>
format_str
,
basic_format_args
<
buffer_context
<
type_identity_t
<
Char
>>>
args
)
{
...
...
@@ -589,7 +589,7 @@ OutputIt vformat_to(
\endrst
*/
template
<
typename
OutputIt
,
typename
S
,
typename
...
Args
,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
>
::
value
&&
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
char_t
<
S
>
>::
value
&&
detail
::
is_string
<
S
>::
value
)
>
inline
OutputIt
format_to
(
OutputIt
out
,
const
text_style
&
ts
,
const
S
&
format_str
,
Args
&&
...
args
)
{
...
...
include/fmt/compile.h
View file @
e3b4c22e
...
...
@@ -667,10 +667,11 @@ OutputIt format_to(OutputIt out, const S&, const Args&... args) {
return
format_to
(
out
,
compiled
,
args
...);
}
template
<
typename
OutputIt
,
typename
CompiledFormat
,
typename
...
Args
,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
>
::
value
&&
std
::
is_base_of
<
detail
::
basic_compiled_format
,
CompiledFormat
>::
value
)
>
template
<
typename
OutputIt
,
typename
CompiledFormat
,
typename
...
Args
,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
typename
CompiledFormat
::
char_type
>
::
value
&&
std
::
is_base_of
<
detail
::
basic_compiled_format
,
CompiledFormat
>::
value
)
>
format_to_n_result
<
OutputIt
>
format_to_n
(
OutputIt
out
,
size_t
n
,
const
CompiledFormat
&
cf
,
const
Args
&
...
args
)
{
...
...
include/fmt/core.h
View file @
e3b4c22e
...
...
@@ -801,8 +801,8 @@ template <typename T> class iterator_buffer<T*, T> final : public buffer<T> {
template
<
typename
Container
>
class
iterator_buffer
<
std
::
back_insert_iterator
<
Container
>
,
enable_if_t
<
is_contiguous
<
Container
>::
value
,
typename
Container
::
value_type
>>
final
:
public
buffer
<
typename
Container
::
value_type
>
{
typename
Container
::
value_type
>>
final
:
public
buffer
<
typename
Container
::
value_type
>
{
private:
Container
&
container_
;
...
...
@@ -1371,23 +1371,15 @@ struct iterator_category<It, void_t<typename It::iterator_category>> {
using
type
=
typename
It
::
iterator_category
;
};
// Detect if *any* given type models the OutputIterator concept.
template
<
typename
It
>
class
is_output_iterator
{
// Check for mutability because all iterator categories derived from
// std::input_iterator_tag *may* also meet the requirements of an
// OutputIterator, thereby falling into the category of 'mutable iterators'
// [iterator.requirements.general] clause 4. The compiler reveals this
// property only at the point of *actually dereferencing* the iterator!
template
<
typename
U
>
static
decltype
(
*
(
std
::
declval
<
U
>
()))
test
(
std
::
input_iterator_tag
);
template
<
typename
U
>
static
char
&
test
(
std
::
output_iterator_tag
);
template
<
typename
U
>
static
const
char
&
test
(...);
template
<
typename
It
,
typename
T
,
typename
Enable
=
void
>
struct
is_output_iterator
:
std
::
false_type
{};
using
type
=
decltype
(
test
<
It
>
(
typename
iterator_category
<
It
>::
type
{}));
public:
enum
{
value
=
!
std
::
is_const
<
remove_reference_t
<
type
>>::
value
};
};
template
<
typename
It
,
typename
T
>
struct
is_output_iterator
<
It
,
T
,
void_t
<
typename
iterator_category
<
It
>::
type
,
decltype
(
*
std
::
declval
<
It
>
()
=
std
::
declval
<
T
>
())
>>
:
std
::
true_type
{};
template
<
typename
OutputIt
>
struct
is_back_insert_iterator
:
std
::
false_type
{};
...
...
@@ -1983,7 +1975,7 @@ inline void vprint_mojibake(std::FILE*, string_view, format_args) {}
// GCC 8 and earlier cannot handle std::back_insert_iterator<Container> with
// vformat_to<ArgFormatter>(...) overload, so SFINAE on iterator type instead.
template
<
typename
OutputIt
,
typename
S
,
typename
Char
=
char_t
<
S
>,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
>::
value
)
>
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
Char
>::
value
)
>
OutputIt
vformat_to
(
OutputIt
out
,
const
S
&
format_str
,
basic_format_args
<
buffer_context
<
type_identity_t
<
Char
>>>
args
)
{
...
...
@@ -2004,7 +1996,8 @@ OutputIt vformat_to(
\endrst
*/
template
<
typename
OutputIt
,
typename
S
,
typename
...
Args
,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
>
::
value
&&
typename
Char
=
char_t
<
S
>,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
Char
>::
value
&&
detail
::
is_string
<
S
>::
value
)
>
inline
OutputIt
format_to
(
OutputIt
out
,
const
S
&
format_str
,
Args
&&
...
args
)
{
const
auto
&
vargs
=
fmt
::
make_args_checked
<
Args
...
>
(
format_str
,
args
...);
...
...
@@ -2019,7 +2012,7 @@ template <typename OutputIt> struct format_to_n_result {
};
template
<
typename
OutputIt
,
typename
Char
,
typename
...
Args
,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
>
::
value
)
>
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
Char
>
::
value
)
>
inline
format_to_n_result
<
OutputIt
>
vformat_to_n
(
OutputIt
out
,
size_t
n
,
basic_string_view
<
Char
>
format_str
,
basic_format_args
<
buffer_context
<
type_identity_t
<
Char
>>>
args
)
{
...
...
@@ -2037,8 +2030,8 @@ inline format_to_n_result<OutputIt> vformat_to_n(
\endrst
*/
template
<
typename
OutputIt
,
typename
S
,
typename
...
Args
,
FMT_ENABLE_IF
(
detail
::
is_string
<
S
>
::
value
&&
detail
::
is_output_iterator
<
OutputIt
>::
value
)
>
FMT_ENABLE_IF
(
detail
::
is_string
<
S
>
::
value
&&
detail
::
is_output_iterator
<
OutputIt
,
char_t
<
S
>
>::
value
)
>
inline
format_to_n_result
<
OutputIt
>
format_to_n
(
OutputIt
out
,
size_t
n
,
const
S
&
format_str
,
const
Args
&
...
args
)
{
...
...
include/fmt/locale.h
View file @
e3b4c22e
...
...
@@ -45,28 +45,27 @@ inline std::basic_string<Char> vformat(
template
<
typename
S
,
typename
...
Args
,
typename
Char
=
char_t
<
S
>
>
inline
std
::
basic_string
<
Char
>
format
(
const
std
::
locale
&
loc
,
const
S
&
format_str
,
Args
&&
...
args
)
{
return
detail
::
vformat
(
loc
,
to_string_view
(
format_str
),
fmt
::
make_args_checked
<
Args
...
>
(
format_str
,
args
...));
return
detail
::
vformat
(
loc
,
to_string_view
(
format_str
),
fmt
::
make_args_checked
<
Args
...
>
(
format_str
,
args
...));
}
template
<
typename
S
,
typename
OutputIt
,
typename
...
Args
,
typename
Char
=
enable_if_t
<
detail
::
is_output_iterator
<
OutputIt
>
::
value
,
char_t
<
S
>>
>
typename
Char
=
char_t
<
S
>,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
Char
>::
value
)
>
inline
OutputIt
vformat_to
(
OutputIt
out
,
const
std
::
locale
&
loc
,
const
S
&
format_str
,
basic_format_args
<
buffer_context
<
type_identity_t
<
Char
>>>
args
)
{
decltype
(
detail
::
get_buffer
<
Char
>
(
out
))
buf
(
detail
::
get_buffer_init
(
out
));
using
af
=
detail
::
arg_formatter
<
typename
buffer_context
<
Char
>::
iterator
,
Char
>
;
detail
::
arg_formatter
<
typename
buffer_context
<
Char
>::
iterator
,
Char
>
;
vformat_to
<
af
>
(
detail
::
buffer_appender
<
Char
>
(
buf
),
to_string_view
(
format_str
),
args
,
detail
::
locale_ref
(
loc
));
return
detail
::
get_iterator
(
buf
);
}
template
<
typename
OutputIt
,
typename
S
,
typename
...
Args
,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
>
::
value
&&
detail
::
is_string
<
S
>::
value
)
>
typename
Char
=
char_t
<
S
>,
FMT_ENABLE_IF
(
detail
::
is_output_iterator
<
OutputIt
,
Char
>::
value
)
>
inline
OutputIt
format_to
(
OutputIt
out
,
const
std
::
locale
&
loc
,
const
S
&
format_str
,
Args
&&
...
args
)
{
const
auto
&
vargs
=
fmt
::
make_args_checked
<
Args
...
>
(
format_str
,
args
...);
...
...
test/format-test.cc
View file @
e3b4c22e
...
...
@@ -169,20 +169,22 @@ TEST(IteratorTest, TruncatingBackInserter) {
}
TEST
(
IteratorTest
,
IsOutputIterator
)
{
EXPECT_TRUE
(
fmt
::
detail
::
is_output_iterator
<
char
*>::
value
);
EXPECT_FALSE
(
fmt
::
detail
::
is_output_iterator
<
const
char
*>::
value
);
EXPECT_FALSE
(
fmt
::
detail
::
is_output_iterator
<
std
::
string
>::
value
);
EXPECT_TRUE
(
fmt
::
detail
::
is_output_iterator
<
std
::
back_insert_iterator
<
std
::
string
>>::
value
);
EXPECT_TRUE
(
fmt
::
detail
::
is_output_iterator
<
std
::
string
::
iterator
>::
value
);
EXPECT_FALSE
(
fmt
::
detail
::
is_output_iterator
<
std
::
string
::
const_iterator
>::
value
);
EXPECT_FALSE
(
fmt
::
detail
::
is_output_iterator
<
std
::
list
<
char
>>::
value
);
EXPECT_TRUE
((
fmt
::
detail
::
is_output_iterator
<
char
*
,
char
>::
value
));
EXPECT_FALSE
((
fmt
::
detail
::
is_output_iterator
<
const
char
*
,
char
>::
value
));
EXPECT_FALSE
((
fmt
::
detail
::
is_output_iterator
<
std
::
string
,
char
>::
value
));
EXPECT_TRUE
(
fmt
::
detail
::
is_output_iterator
<
std
::
list
<
char
>::
iterator
>::
value
);
EXPECT_FALSE
(
fmt
::
detail
::
is_output_iterator
<
std
::
list
<
char
>::
const_iterator
>::
value
);
EXPECT_FALSE
(
fmt
::
detail
::
is_output_iterator
<
uint32_pair
>::
value
);
(
fmt
::
detail
::
is_output_iterator
<
std
::
back_insert_iterator
<
std
::
string
>
,
char
>::
value
));
EXPECT_TRUE
(
(
fmt
::
detail
::
is_output_iterator
<
std
::
string
::
iterator
,
char
>::
value
));
EXPECT_FALSE
((
fmt
::
detail
::
is_output_iterator
<
std
::
string
::
const_iterator
,
char
>::
value
));
EXPECT_FALSE
((
fmt
::
detail
::
is_output_iterator
<
std
::
list
<
char
>
,
char
>::
value
));
EXPECT_TRUE
((
fmt
::
detail
::
is_output_iterator
<
std
::
list
<
char
>::
iterator
,
char
>::
value
));
EXPECT_FALSE
((
fmt
::
detail
::
is_output_iterator
<
std
::
list
<
char
>::
const_iterator
,
char
>::
value
));
EXPECT_FALSE
((
fmt
::
detail
::
is_output_iterator
<
uint32_pair
,
char
>::
value
));
}
TEST
(
MemoryBufferTest
,
Ctor
)
{
...
...
@@ -720,13 +722,8 @@ TEST(FormatterTest, SpaceSign) {
}
TEST
(
FormatterTest
,
SignNotTruncated
)
{
wchar_t
format_str
[]
=
{
L'{'
,
L':'
,
'+'
|
(
1
<<
fmt
::
detail
::
num_bits
<
char
>
()),
L'}'
,
0
};
wchar_t
format_str
[]
=
{
L'{'
,
L':'
,
'+'
|
(
1
<<
fmt
::
detail
::
num_bits
<
char
>
()),
L'}'
,
0
};
EXPECT_THROW
(
format
(
format_str
,
42
),
format_error
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment