Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
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
spdlog
Commits
f09d0f23
Commit
f09d0f23
authored
Nov 19, 2018
by
Daniel Chabrowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add helper for count_digits
parent
14a071c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
include/spdlog/details/fmt_helper.h
include/spdlog/details/fmt_helper.h
+9
-1
include/spdlog/details/pattern_formatter.h
include/spdlog/details/pattern_formatter.h
+1
-1
No files found.
include/spdlog/details/fmt_helper.h
View file @
f09d0f23
...
...
@@ -18,6 +18,7 @@ inline spdlog::string_view_t to_string_view(const fmt::basic_memory_buffer<char,
{
return
spdlog
::
string_view_t
(
buf
.
data
(),
buf
.
size
());
}
template
<
size_t
Buffer_Size1
,
size_t
Buffer_Size2
>
inline
void
append_buf
(
const
fmt
::
basic_memory_buffer
<
char
,
Buffer_Size1
>
&
buf
,
fmt
::
basic_memory_buffer
<
char
,
Buffer_Size2
>
&
dest
)
{
...
...
@@ -42,6 +43,13 @@ inline void append_int(T n, fmt::basic_memory_buffer<char, Buffer_Size> &dest)
dest
.
append
(
i
.
data
(),
i
.
data
()
+
i
.
size
());
}
template
<
typename
T
>
inline
unsigned
count_digits
(
T
n
)
{
using
count_type
=
std
::
conditional
<
(
sizeof
(
std
::
size_t
)
>
sizeof
(
std
::
uint32_t
)),
std
::
uint64_t
,
std
::
uint32_t
>::
type
;
return
fmt
::
internal
::
count_digits
(
static_cast
<
count_type
>
(
n
));
}
template
<
size_t
Buffer_Size
>
inline
void
pad2
(
int
n
,
fmt
::
basic_memory_buffer
<
char
,
Buffer_Size
>
&
dest
)
{
...
...
@@ -69,7 +77,7 @@ template<typename T, size_t Buffer_Size>
inline
void
pad_uint
(
T
n
,
unsigned
int
width
,
fmt
::
basic_memory_buffer
<
char
,
Buffer_Size
>
&
dest
)
{
static_assert
(
std
::
is_unsigned
<
T
>::
value
,
"append_uint must get unsigned T"
);
auto
digits
=
fmt
::
internal
::
count_digits
(
static_cast
<
uint64_t
>
(
n
)
);
auto
digits
=
count_digits
(
n
);
if
(
width
>
digits
)
{
const
char
*
zeroes
=
"0000000000000000000"
;
...
...
include/spdlog/details/pattern_formatter.h
View file @
f09d0f23
...
...
@@ -652,7 +652,7 @@ public:
void
format
(
const
details
::
log_msg
&
msg
,
const
std
::
tm
&
,
fmt
::
memory_buffer
&
dest
)
override
{
const
auto
field_size
=
fmt
::
internal
::
count_digits
(
static_cast
<
uint64_t
>
(
msg
.
thread_id
)
);
const
auto
field_size
=
fmt
_helper
::
count_digits
(
msg
.
thread_id
);
scoped_pad
p
(
field_size
,
padinfo_
,
dest
);
fmt_helper
::
append_int
(
msg
.
thread_id
,
dest
);
}
...
...
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