]> git.lizzy.rs Git - rust.git/blob - src/libcore/fmt/num.rs
Auto merge of #44060 - taleks:issue-43205, r=arielb1
[rust.git] / src / libcore / fmt / num.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Integer and floating-point number formatting
12
13 #![allow(deprecated)]
14
15 // FIXME: #6220 Implement floating point formatting
16
17 use fmt;
18 use ops::{Div, Rem, Sub};
19 use str;
20 use slice;
21 use ptr;
22 use mem;
23
24 #[doc(hidden)]
25 trait Int: PartialEq + PartialOrd + Div<Output=Self> + Rem<Output=Self> +
26            Sub<Output=Self> + Copy {
27     fn zero() -> Self;
28     fn from_u8(u: u8) -> Self;
29     fn to_u8(&self) -> u8;
30     fn to_u16(&self) -> u16;
31     fn to_u32(&self) -> u32;
32     fn to_u64(&self) -> u64;
33     fn to_u128(&self) -> u128;
34 }
35
36 macro_rules! doit {
37     ($($t:ident)*) => ($(impl Int for $t {
38         fn zero() -> $t { 0 }
39         fn from_u8(u: u8) -> $t { u as $t }
40         fn to_u8(&self) -> u8 { *self as u8 }
41         fn to_u16(&self) -> u16 { *self as u16 }
42         fn to_u32(&self) -> u32 { *self as u32 }
43         fn to_u64(&self) -> u64 { *self as u64 }
44         fn to_u128(&self) -> u128 { *self as u128 }
45     })*)
46 }
47 doit! { i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize }
48
49 /// A type that represents a specific radix
50 #[doc(hidden)]
51 trait GenericRadix {
52     /// The number of digits.
53     fn base(&self) -> u8;
54
55     /// A radix-specific prefix string.
56     fn prefix(&self) -> &'static str {
57         ""
58     }
59
60     /// Converts an integer to corresponding radix digit.
61     fn digit(&self, x: u8) -> u8;
62
63     /// Format an integer using the radix using a formatter.
64     fn fmt_int<T: Int>(&self, mut x: T, f: &mut fmt::Formatter) -> fmt::Result {
65         // The radix can be as low as 2, so we need a buffer of at least 128
66         // characters for a base 2 number.
67         let zero = T::zero();
68         let is_nonnegative = x >= zero;
69         let mut buf = [0; 128];
70         let mut curr = buf.len();
71         let base = T::from_u8(self.base());
72         if is_nonnegative {
73             // Accumulate each digit of the number from the least significant
74             // to the most significant figure.
75             for byte in buf.iter_mut().rev() {
76                 let n = x % base;              // Get the current place value.
77                 x = x / base;                  // Deaccumulate the number.
78                 *byte = self.digit(n.to_u8()); // Store the digit in the buffer.
79                 curr -= 1;
80                 if x == zero {
81                     // No more digits left to accumulate.
82                     break
83                 };
84             }
85         } else {
86             // Do the same as above, but accounting for two's complement.
87             for byte in buf.iter_mut().rev() {
88                 let n = zero - (x % base);     // Get the current place value.
89                 x = x / base;                  // Deaccumulate the number.
90                 *byte = self.digit(n.to_u8()); // Store the digit in the buffer.
91                 curr -= 1;
92                 if x == zero {
93                     // No more digits left to accumulate.
94                     break
95                 };
96             }
97         }
98         let buf = unsafe { str::from_utf8_unchecked(&buf[curr..]) };
99         f.pad_integral(is_nonnegative, self.prefix(), buf)
100     }
101 }
102
103 /// A binary (base 2) radix
104 #[derive(Clone, PartialEq)]
105 struct Binary;
106
107 /// An octal (base 8) radix
108 #[derive(Clone, PartialEq)]
109 struct Octal;
110
111 /// A decimal (base 10) radix
112 #[derive(Clone, PartialEq)]
113 struct Decimal;
114
115 /// A hexadecimal (base 16) radix, formatted with lower-case characters
116 #[derive(Clone, PartialEq)]
117 struct LowerHex;
118
119 /// A hexadecimal (base 16) radix, formatted with upper-case characters
120 #[derive(Clone, PartialEq)]
121 struct UpperHex;
122
123 macro_rules! radix {
124     ($T:ident, $base:expr, $prefix:expr, $($x:pat => $conv:expr),+) => {
125         impl GenericRadix for $T {
126             fn base(&self) -> u8 { $base }
127             fn prefix(&self) -> &'static str { $prefix }
128             fn digit(&self, x: u8) -> u8 {
129                 match x {
130                     $($x => $conv,)+
131                     x => panic!("number not in the range 0..{}: {}", self.base() - 1, x),
132                 }
133             }
134         }
135     }
136 }
137
138 radix! { Binary,    2, "0b", x @  0 ...  2 => b'0' + x }
139 radix! { Octal,     8, "0o", x @  0 ...  7 => b'0' + x }
140 radix! { Decimal,  10, "",   x @  0 ...  9 => b'0' + x }
141 radix! { LowerHex, 16, "0x", x @  0 ...  9 => b'0' + x,
142                              x @ 10 ... 15 => b'a' + (x - 10) }
143 radix! { UpperHex, 16, "0x", x @  0 ...  9 => b'0' + x,
144                              x @ 10 ... 15 => b'A' + (x - 10) }
145
146 macro_rules! int_base {
147     ($Trait:ident for $T:ident as $U:ident -> $Radix:ident) => {
148         #[stable(feature = "rust1", since = "1.0.0")]
149         impl fmt::$Trait for $T {
150             fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
151                 $Radix.fmt_int(*self as $U, f)
152             }
153         }
154     }
155 }
156
157 macro_rules! debug {
158     ($T:ident) => {
159         #[stable(feature = "rust1", since = "1.0.0")]
160         impl fmt::Debug for $T {
161             fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
162                 fmt::Display::fmt(self, f)
163             }
164         }
165     }
166 }
167
168 macro_rules! integer {
169     ($Int:ident, $Uint:ident) => {
170         int_base! { Binary   for $Int as $Uint  -> Binary }
171         int_base! { Octal    for $Int as $Uint  -> Octal }
172         int_base! { LowerHex for $Int as $Uint  -> LowerHex }
173         int_base! { UpperHex for $Int as $Uint  -> UpperHex }
174         debug! { $Int }
175
176         int_base! { Binary   for $Uint as $Uint -> Binary }
177         int_base! { Octal    for $Uint as $Uint -> Octal }
178         int_base! { LowerHex for $Uint as $Uint -> LowerHex }
179         int_base! { UpperHex for $Uint as $Uint -> UpperHex }
180         debug! { $Uint }
181     }
182 }
183 integer! { isize, usize }
184 integer! { i8, u8 }
185 integer! { i16, u16 }
186 integer! { i32, u32 }
187 integer! { i64, u64 }
188 integer! { i128, u128 }
189
190 const DEC_DIGITS_LUT: &'static[u8] =
191     b"0001020304050607080910111213141516171819\
192       2021222324252627282930313233343536373839\
193       4041424344454647484950515253545556575859\
194       6061626364656667686970717273747576777879\
195       8081828384858687888990919293949596979899";
196
197 macro_rules! impl_Display {
198     ($($t:ident),*: $conv_fn:ident) => ($(
199     #[stable(feature = "rust1", since = "1.0.0")]
200     impl fmt::Display for $t {
201         #[allow(unused_comparisons)]
202         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
203             let is_nonnegative = *self >= 0;
204             let mut n = if is_nonnegative {
205                 self.$conv_fn()
206             } else {
207                 // convert the negative num to positive by summing 1 to it's 2 complement
208                 (!self.$conv_fn()).wrapping_add(1)
209             };
210             let mut buf: [u8; 39] = unsafe { mem::uninitialized() };
211             let mut curr = buf.len() as isize;
212             let buf_ptr = buf.as_mut_ptr();
213             let lut_ptr = DEC_DIGITS_LUT.as_ptr();
214
215             unsafe {
216                 // need at least 16 bits for the 4-characters-at-a-time to work.
217                 if ::mem::size_of::<$t>() >= 2 {
218                     // eagerly decode 4 characters at a time
219                     while n >= 10000 {
220                         let rem = (n % 10000) as isize;
221                         n /= 10000;
222
223                         let d1 = (rem / 100) << 1;
224                         let d2 = (rem % 100) << 1;
225                         curr -= 4;
226                         ptr::copy_nonoverlapping(lut_ptr.offset(d1), buf_ptr.offset(curr), 2);
227                         ptr::copy_nonoverlapping(lut_ptr.offset(d2), buf_ptr.offset(curr + 2), 2);
228                     }
229                 }
230
231                 // if we reach here numbers are <= 9999, so at most 4 chars long
232                 let mut n = n as isize; // possibly reduce 64bit math
233
234                 // decode 2 more chars, if > 2 chars
235                 if n >= 100 {
236                     let d1 = (n % 100) << 1;
237                     n /= 100;
238                     curr -= 2;
239                     ptr::copy_nonoverlapping(lut_ptr.offset(d1), buf_ptr.offset(curr), 2);
240                 }
241
242                 // decode last 1 or 2 chars
243                 if n < 10 {
244                     curr -= 1;
245                     *buf_ptr.offset(curr) = (n as u8) + 48;
246                 } else {
247                     let d1 = n << 1;
248                     curr -= 2;
249                     ptr::copy_nonoverlapping(lut_ptr.offset(d1), buf_ptr.offset(curr), 2);
250                 }
251             }
252
253             let buf_slice = unsafe {
254                 str::from_utf8_unchecked(
255                     slice::from_raw_parts(buf_ptr.offset(curr), buf.len() - curr as usize))
256             };
257             f.pad_integral(is_nonnegative, "", buf_slice)
258         }
259     })*);
260 }
261
262 impl_Display!(i8, u8, i16, u16, i32, u32: to_u32);
263 impl_Display!(i64, u64: to_u64);
264 impl_Display!(i128, u128: to_u128);
265 #[cfg(target_pointer_width = "16")]
266 impl_Display!(isize, usize: to_u16);
267 #[cfg(target_pointer_width = "32")]
268 impl_Display!(isize, usize: to_u32);
269 #[cfg(target_pointer_width = "64")]
270 impl_Display!(isize, usize: to_u64);