/base/grisu.jl

https://github.com/stevengj/julia · Julia · 164 lines · 136 code · 13 blank · 15 comment · 32 complexity · c6154038f0a650c69b611032375954b2 MD5 · raw file

  1. module Grisu
  2. export print_shortest
  3. export @grisu_ccall, NEG, DIGITS, BUFLEN, LEN, POINT
  4. import Base.show, Base.showcompact
  5. const NEG = Array(Bool,1)
  6. const DIGITS = Array(Uint8,309+17)
  7. const BUFLEN = int32(length(DIGITS)+1)
  8. const LEN = Array(Int32,1)
  9. const POINT = Array(Int32,1)
  10. macro grisu_ccall(value, mode, ndigits)
  11. quote
  12. ccall((:grisu, :libgrisu), Void,
  13. (Float64, Int32, Int32, Ptr{Uint8}, Int32,
  14. Ptr{Bool}, Ptr{Int32}, Ptr{Int32}),
  15. $(esc(value)), $(esc(mode)), $(esc(ndigits)),
  16. DIGITS, BUFLEN, NEG, LEN, POINT)
  17. end
  18. end
  19. const SHORTEST = int32(0) # shortest exact representation for doubles
  20. const SHORTEST_SINGLE = int32(1) # shortest exact representation for singles
  21. const FIXED = int32(2) # fixed number of trailing decimal points
  22. const PRECISION = int32(3) # fixed precision regardless of magnitude
  23. # wrapper for the core grisu function, primarily for debugging
  24. function grisu(x::Float64, mode::Integer, ndigits::Integer)
  25. if !isfinite(x); error("non-finite value: $x"); end
  26. if ndigits < 0; error("negative digits requested"); end
  27. @grisu_ccall x mode ndigits
  28. NEG[1], DIGITS[1:LEN[1]], POINT[1]
  29. end
  30. grisu(x::Float64) = grisu(x, SHORTEST, int32(0))
  31. grisu(x::Float32) = grisu(float64(x), SHORTEST_SINGLE, int32(0))
  32. grisu(x::Real) = grisu(float(x))
  33. function grisu_fix(x::Real, n::Integer)
  34. if n > 17; n = 17; end
  35. grisu(float64(x), FIXED, int32(n))
  36. end
  37. function grisu_sig(x::Real, n::Integer)
  38. if n > 309; n = 309; end
  39. grisu(float64(x), PRECISION, int32(n))
  40. end
  41. function _show(io::IO, x::FloatingPoint, mode::Int32, n::Int)
  42. if isnan(x) return write(io, isa(x,Float32) ? "NaN32" : "NaN") end
  43. if isinf(x)
  44. if x < 0 write(io,'-') end
  45. write(io, isa(x,Float32) ? "Inf32" : "Inf")
  46. return
  47. end
  48. @grisu_ccall x mode n
  49. pdigits = pointer(DIGITS)
  50. neg = NEG[1]
  51. len = LEN[1]
  52. pt = POINT[1]
  53. if mode == PRECISION
  54. while len > 1 && DIGITS[len] == '0'
  55. len -= 1
  56. end
  57. end
  58. if neg write(io,'-') end
  59. if pt <= -4 || pt > 6 # .00001 to 100000.
  60. # => #.#######e###
  61. write(io, pdigits, 1)
  62. write(io, '.')
  63. if len > 1
  64. write(io, pdigits+1, len-1)
  65. else
  66. write(io, '0')
  67. end
  68. write(io, isa(x,Float32) ? 'f' : 'e')
  69. write(io, dec(pt-1))
  70. return
  71. elseif pt <= 0
  72. # => 0.00########
  73. write(io, "0.")
  74. while pt < 0
  75. write(io, '0')
  76. pt += 1
  77. end
  78. write(io, pdigits, len)
  79. elseif pt >= len
  80. # => ########00.0
  81. write(io, pdigits, len)
  82. while pt > len
  83. write(io, '0')
  84. len += 1
  85. end
  86. write(io, ".0")
  87. else # => ####.####
  88. write(io, pdigits, pt)
  89. write(io, '.')
  90. write(io, pdigits+pt, len-pt)
  91. end
  92. if isa(x,Float32) write(io, "f0") end
  93. nothing
  94. end
  95. show(io::IO, x::Float64) = _show(io, x, SHORTEST, 0)
  96. show(io::IO, x::Float32) = _show(io, x, SHORTEST_SINGLE, 0)
  97. showcompact(io::IO, x::FloatingPoint) = _show(io, x, PRECISION, 6)
  98. # normal:
  99. # 0 < pt < len ####.#### len+1
  100. # pt <= 0 .000######## len-pt+1
  101. # len <= pt (dot) ########000. pt+1
  102. # len <= pt (no dot) ########000 pt
  103. # exponential:
  104. # pt <= 0 ########e-### len+k+2
  105. # 0 < pt ########e### len+k+1
  106. function _print_shortest(io::IO, x::FloatingPoint, dot::Bool, mode::Int32)
  107. if isnan(x); return write(io, isa(x,Float32) ? "NaN32" : "NaN"); end
  108. if x < 0 write(io,'-') end
  109. if isinf(x); return write(io, isa(x,Float32) ? "Inf32" : "Inf"); end
  110. @grisu_ccall x mode 0
  111. pdigits = pointer(DIGITS)
  112. len = LEN[1]
  113. pt = POINT[1]
  114. e = pt-len
  115. k = -9<=e<=9 ? 1 : 2
  116. if -pt > k+1 || e+dot > k+1
  117. # => ########e###
  118. write(io, pdigits+0, len)
  119. write(io, isa(x,Float32) ? 'f' : 'e')
  120. write(io, dec(e))
  121. return
  122. elseif pt <= 0
  123. # => .000########
  124. write(io, '.')
  125. while pt < 0
  126. write(io, '0')
  127. pt += 1
  128. end
  129. write(io, pdigits+0, len)
  130. elseif e >= dot
  131. # => ########000.
  132. write(io, pdigits+0, len)
  133. while e > 0
  134. write(io, '0')
  135. e -= 1
  136. end
  137. if dot
  138. write(io, '.')
  139. end
  140. else # => ####.####
  141. write(io, pdigits+0, pt)
  142. write(io, '.')
  143. write(io, pdigits+pt, len-pt)
  144. end
  145. if isa(x,Float32) write(io, "f0") end
  146. nothing
  147. end
  148. print_shortest(io::IO, x::Float64, dot::Bool) = _print_shortest(io, x, dot, SHORTEST)
  149. print_shortest(io::IO, x::Float32, dot::Bool) = _print_shortest(io, x, dot, SHORTEST_SINGLE)
  150. print_shortest(io::IO, x::Union(FloatingPoint,Integer)) = print_shortest(io, float(x), false)
  151. end # module