Skip to content

Commit

Permalink
make Printf's general format C11 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
bicycle1885 authored and Amit Shirodkar committed Jun 9, 2021
1 parent 74ee119 commit fbe1088
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
23 changes: 21 additions & 2 deletions stdlib/Printf/src/Printf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,28 @@ const __BIG_FLOAT_MAX__ = 8192
elseif T == Val{'f'} || T == Val{'F'}
newpos = Ryu.writefixed(buf, pos, x, prec, plus, space, hash, UInt8('.'))
elseif T == Val{'g'} || T == Val{'G'}
# C11-compliant general format
prec = prec == 0 ? 1 : prec
x = round(x, sigdigits=prec)
newpos = Ryu.writeshortest(buf, pos, x, plus, space, hash, prec, T == Val{'g'} ? UInt8('e') : UInt8('E'), true, UInt8('.'))
# format the value in scientific notation and parse the exponent part
exp = let p = Ryu.writeexp(buf, pos, x, prec)
b1, b2, b3, b4 = buf[p-4], buf[p-3], buf[p-2], buf[p-1]
Z = UInt8('0')
if b1 == UInt8('e')
# two-digit exponent
sign = b2 == UInt8('+') ? 1 : -1
exp = 10 * (b3 - Z) + (b4 - Z)
else
# three-digit exponent
sign = b1 == UInt8('+') ? 1 : -1
exp = 100 * (b2 - Z) + 10 * (b3 - Z) + (b4 - Z)
end
flipsign(exp, sign)
end
if -4 exp < prec
newpos = Ryu.writefixed(buf, pos, x, prec - (exp + 1), plus, space, hash, UInt8('.'), !hash)
else
newpos = Ryu.writeexp(buf, pos, x, prec - 1, plus, space, hash, T == Val{'g'} ? UInt8('e') : UInt8('E'), UInt8('.'), !hash)
end
elseif T == Val{'a'} || T == Val{'A'}
x, neg = x < 0 || x === -Base.zero(x) ? (-x, true) : (x, false)
newpos = pos
Expand Down
8 changes: 8 additions & 0 deletions stdlib/Printf/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,14 @@ end
@test Printf.@sprintf("%e", 1) == "1.000000e+00"
@test Printf.@sprintf("%g", 1) == "1"

# issue #39748
@test Printf.@sprintf("%.16g", 194.4778127560983) == "194.4778127560983"
@test Printf.@sprintf("%.17g", 194.4778127560983) == "194.4778127560983"
@test Printf.@sprintf("%.18g", 194.4778127560983) == "194.477812756098302"
@test Printf.@sprintf("%.1g", 1.7976931348623157e308) == "2e+308"
@test Printf.@sprintf("%.2g", 1.7976931348623157e308) == "1.8e+308"
@test Printf.@sprintf("%.3g", 1.7976931348623157e308) == "1.8e+308"

# escaped '%'
@test_throws ArgumentError @sprintf("%s%%%s", "a")
@test @sprintf("%s%%%s", "a", "b") == "a%b"
Expand Down

0 comments on commit fbe1088

Please sign in to comment.