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
ccbe9418
Commit
ccbe9418
authored
Dec 24, 2012
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement numeric alignment. Make integer formatting faster.
parent
1b9c22c1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
96 additions
and
25 deletions
+96
-25
format.cc
format.cc
+65
-23
format.h
format.h
+2
-2
format_test.cc
format_test.cc
+29
-0
No files found.
format.cc
View file @
ccbe9418
...
...
@@ -89,6 +89,21 @@ struct IsLongDouble { enum {VALUE = 0}; };
template
<
>
struct
IsLongDouble
<
long
double
>
{
enum
{
VALUE
=
1
};
};
inline
unsigned
CountDigits
(
unsigned
long
n
)
{
unsigned
count
=
1
;
for
(;;)
{
// Integer division is slow so do it for a group of four digits instead
// of for every digit. The idea comes from the talk by Alexandrescu
// "Three Optimization Tips for C++". See speed-test for a comparison.
if
(
n
<
10
)
return
count
;
if
(
n
<
100
)
return
count
+
1
;
if
(
n
<
1000
)
return
count
+
2
;
if
(
n
<
10000
)
return
count
+
3
;
n
/=
10000u
;
count
+=
4
;
}
}
}
// Throws Exception(message) if format contains '}', otherwise throws
...
...
@@ -107,7 +122,7 @@ void Formatter::ReportError(const char *s, const std::string &message) const {
}
char
*
Formatter
::
PrepareFilledBuffer
(
unsigned
size
,
FormatSpec
spec
,
char
sign
)
{
unsigned
size
,
const
FormatSpec
&
spec
,
char
sign
)
{
if
(
spec
.
width
<=
size
)
{
char
*
p
=
GrowBuffer
(
size
);
*
p
=
sign
;
...
...
@@ -115,11 +130,7 @@ char *Formatter::PrepareFilledBuffer(
}
char
*
p
=
GrowBuffer
(
spec
.
width
);
char
*
end
=
p
+
spec
.
width
;
if
(
spec
.
align
==
ALIGN_LEFT
)
{
*
p
=
sign
;
p
+=
size
;
std
::
fill
(
p
,
end
,
spec
.
fill
);
}
else
{
if
(
spec
.
align
!=
ALIGN_LEFT
)
{
if
(
spec
.
align
==
ALIGN_NUMERIC
)
{
if
(
sign
)
{
*
p
++
=
sign
;
...
...
@@ -130,12 +141,16 @@ char *Formatter::PrepareFilledBuffer(
}
std
::
fill
(
p
,
end
-
size
,
spec
.
fill
);
p
=
end
;
}
else
{
*
p
=
sign
;
p
+=
size
;
std
::
fill
(
p
,
end
,
spec
.
fill
);
}
return
p
-
1
;
}
template
<
typename
T
>
void
Formatter
::
FormatInt
(
T
value
,
FormatSpec
spec
)
{
void
Formatter
::
FormatInt
(
T
value
,
const
FormatSpec
&
spec
)
{
unsigned
size
=
0
;
char
sign
=
0
;
typedef
typename
IntTraits
<
T
>::
UnsignedType
UnsignedType
;
...
...
@@ -150,15 +165,15 @@ void Formatter::FormatInt(T value, FormatSpec spec) {
}
switch
(
spec
.
type
)
{
case
0
:
case
'd'
:
{
unsigned
count
=
CountDigits
(
abs_value
);
char
*
p
=
PrepareFilledBuffer
(
size
+
count
,
spec
,
sign
)
-
count
+
1
;
--
count
;
UnsignedType
n
=
abs_value
;
do
{
++
size
;
}
while
((
n
/=
10
)
!=
0
);
char
*
p
=
PrepareFilledBuffer
(
size
,
spec
,
sign
);
n
=
abs_value
;
do
{
*
p
--
=
'0'
+
(
n
%
10
);
}
while
((
n
/=
10
)
!=
0
);
while
(
count
!=
0
)
{
p
[
count
--
]
=
'0'
+
(
n
%
10
);
n
/=
10
;
}
*
p
=
'0'
+
n
;
break
;
}
case
'x'
:
case
'X'
:
{
...
...
@@ -220,18 +235,29 @@ void Formatter::FormatDouble(T value, const FormatSpec &spec, int precision) {
break
;
}
char
sign
=
0
;
if
(
value
<
0
)
{
sign
=
'-'
;
value
=
-
value
;
}
else
if
((
spec
.
flags
&
PLUS_FLAG
)
!=
0
)
{
sign
=
'+'
;
}
size_t
offset
=
buffer_
.
size
();
unsigned
width
=
spec
.
width
;
if
(
sign
)
{
buffer_
.
reserve
(
buffer_
.
size
()
+
std
::
max
(
width
,
1u
));
if
(
width
>
0
)
--
width
;
++
offset
;
}
// Build format string.
enum
{
MAX_FORMAT_SIZE
=
10
};
// longest format: %+0*.*Lg
char
format
[
MAX_FORMAT_SIZE
];
char
*
format_ptr
=
format
;
unsigned
width
=
spec
.
width
;
*
format_ptr
++
=
'%'
;
if
((
spec
.
flags
&
PLUS_FLAG
)
!=
0
)
*
format_ptr
++
=
'+'
;
if
(
spec
.
align
==
ALIGN_LEFT
)
*
format_ptr
++
=
'-'
;
else
if
(
spec
.
align
==
ALIGN_NUMERIC
)
*
format_ptr
++
=
'0'
;
if
(
width
!=
0
)
*
format_ptr
++
=
'*'
;
if
(
precision
>=
0
)
{
...
...
@@ -244,7 +270,6 @@ void Formatter::FormatDouble(T value, const FormatSpec &spec, int precision) {
*
format_ptr
=
'\0'
;
// Format using snprintf.
size_t
offset
=
buffer_
.
size
();
for
(;;)
{
size_t
size
=
buffer_
.
capacity
()
-
offset
;
int
n
=
0
;
...
...
@@ -259,9 +284,21 @@ void Formatter::FormatDouble(T value, const FormatSpec &spec, int precision) {
snprintf
(
start
,
size
,
format
,
width
,
precision
,
value
);
}
if
(
n
>=
0
&&
offset
+
n
<
buffer_
.
capacity
())
{
if
(
spec
.
fill
!=
' '
)
{
if
(
sign
)
{
if
((
spec
.
align
!=
ALIGN_RIGHT
&&
spec
.
align
!=
ALIGN_DEFAULT
)
||
*
start
!=
' '
)
{
*
(
start
-
1
)
=
sign
;
sign
=
0
;
}
else
{
*
(
start
-
1
)
=
spec
.
fill
;
}
++
n
;
}
if
(
spec
.
fill
!=
' '
||
sign
)
{
while
(
*
start
==
' '
)
*
start
++
=
spec
.
fill
;
if
(
sign
)
*
(
start
-
1
)
=
sign
;
}
GrowBuffer
(
n
);
return
;
...
...
@@ -352,10 +389,15 @@ void Formatter::DoFormat() {
break
;
}
if
(
spec
.
align
!=
ALIGN_DEFAULT
)
{
if
(
p
!=
s
&&
c
!=
'{'
&&
c
!=
'}'
)
{
if
(
p
!=
s
)
{
if
(
c
==
'}'
)
break
;
if
(
c
==
'{'
)
ReportError
(
s
,
"invalid fill character '{'"
);
s
+=
2
;
spec
.
fill
=
c
;
}
else
++
s
;
if
(
spec
.
align
==
ALIGN_NUMERIC
&&
arg
.
type
>
LAST_NUMERIC_TYPE
)
ReportError
(
s
,
"format specifier '=' requires numeric argument"
);
break
;
}
}
while
(
--
p
>=
s
);
...
...
format.h
View file @
ccbe9418
...
...
@@ -271,11 +271,11 @@ class Formatter {
void
ReportError
(
const
char
*
s
,
const
std
::
string
&
message
)
const
;
char
*
PrepareFilledBuffer
(
unsigned
size
,
FormatSpec
spec
,
char
sign
);
char
*
PrepareFilledBuffer
(
unsigned
size
,
const
FormatSpec
&
spec
,
char
sign
);
// Formats an integer.
template
<
typename
T
>
void
FormatInt
(
T
value
,
FormatSpec
spec
);
void
FormatInt
(
T
value
,
const
FormatSpec
&
spec
);
// Formats a floating point number (double or long double).
template
<
typename
T
>
...
...
format_test.cc
View file @
ccbe9418
...
...
@@ -293,7 +293,36 @@ TEST(FormatterTest, RightAlign) {
EXPECT_EQ
(
" def"
,
str
(
Format
(
"{0:>5}"
)
<<
TestString
(
"def"
)));
}
TEST
(
FormatterTest
,
NumericAlign
)
{
EXPECT_EQ
(
" 42"
,
str
(
Format
(
"{0:=4}"
)
<<
42
));
EXPECT_EQ
(
"+ 42"
,
str
(
Format
(
"{0:=+4}"
)
<<
42
));
EXPECT_EQ
(
" 42"
,
str
(
Format
(
"{0:=4o}"
)
<<
042
));
EXPECT_EQ
(
"+ 42"
,
str
(
Format
(
"{0:=+4o}"
)
<<
042
));
EXPECT_EQ
(
" 42"
,
str
(
Format
(
"{0:=4x}"
)
<<
0x42
));
EXPECT_EQ
(
"+ 42"
,
str
(
Format
(
"{0:=+4x}"
)
<<
0x42
));
EXPECT_EQ
(
"- 42"
,
str
(
Format
(
"{0:=5}"
)
<<
-
42
));
EXPECT_EQ
(
" 42"
,
str
(
Format
(
"{0:=5}"
)
<<
42u
));
EXPECT_EQ
(
"- 42"
,
str
(
Format
(
"{0:=5}"
)
<<
-
42l
));
EXPECT_EQ
(
" 42"
,
str
(
Format
(
"{0:=5}"
)
<<
42ul
));
EXPECT_EQ
(
"- 42"
,
str
(
Format
(
"{0:=5}"
)
<<
-
42.0
));
EXPECT_EQ
(
"- 42"
,
str
(
Format
(
"{0:=5}"
)
<<
-
42.0
l
));
EXPECT_THROW_MSG
(
Format
(
"{0:=5"
)
<<
'c'
,
FormatError
,
"unmatched '{' in format"
);
EXPECT_THROW_MSG
(
Format
(
"{0:=5}"
)
<<
'c'
,
FormatError
,
"format specifier '=' requires numeric argument"
);
EXPECT_THROW_MSG
(
Format
(
"{0:=5}"
)
<<
"abc"
,
FormatError
,
"format specifier '=' requires numeric argument"
);
EXPECT_THROW_MSG
(
Format
(
"{0:=8}"
)
<<
reinterpret_cast
<
void
*>
(
0xface
),
FormatError
,
"format specifier '=' requires numeric argument"
);
EXPECT_THROW_MSG
(
Format
(
"{0:=5}"
)
<<
TestString
(
"def"
),
FormatError
,
"format specifier '=' requires numeric argument"
);
}
TEST
(
FormatterTest
,
Fill
)
{
EXPECT_THROW_MSG
(
Format
(
"{0:{<5}"
)
<<
'c'
,
FormatError
,
"unmatched '{' in format"
);
EXPECT_THROW_MSG
(
Format
(
"{0:{<5}}"
)
<<
'c'
,
FormatError
,
"invalid fill character '{'"
);
EXPECT_EQ
(
"**42"
,
str
(
Format
(
"{0:*>4}"
)
<<
42
));
EXPECT_EQ
(
"**-42"
,
str
(
Format
(
"{0:*>5}"
)
<<
-
42
));
EXPECT_EQ
(
"***42"
,
str
(
Format
(
"{0:*>5}"
)
<<
42u
));
...
...
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