2014-02-22 03:52:32 +11:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! Integer and floating-point number formatting
|
|
|
|
|
|
|
|
// FIXME: #6220 Implement floating point formatting
|
|
|
|
|
2015-07-29 17:01:14 -07:00
|
|
|
use prelude::v1::*;
|
2015-04-17 15:32:42 -07:00
|
|
|
|
2014-02-22 03:52:32 +11:00
|
|
|
use fmt;
|
2015-04-17 15:32:42 -07:00
|
|
|
use num::Zero;
|
|
|
|
use ops::{Div, Rem, Sub};
|
2014-12-12 10:59:41 -08:00
|
|
|
use str;
|
2015-07-18 18:58:42 -03:00
|
|
|
use slice;
|
|
|
|
use ptr;
|
|
|
|
use mem;
|
2014-02-22 03:52:32 +11:00
|
|
|
|
2015-04-17 15:32:42 -07:00
|
|
|
#[doc(hidden)]
|
|
|
|
trait Int: Zero + PartialEq + PartialOrd + Div<Output=Self> + Rem<Output=Self> +
|
|
|
|
Sub<Output=Self> + Copy {
|
|
|
|
fn from_u8(u: u8) -> Self;
|
|
|
|
fn to_u8(&self) -> u8;
|
2015-07-18 18:58:42 -03:00
|
|
|
fn to_u32(&self) -> u32;
|
|
|
|
fn to_u64(&self) -> u64;
|
2015-04-17 15:32:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! doit {
|
|
|
|
($($t:ident)*) => ($(impl Int for $t {
|
|
|
|
fn from_u8(u: u8) -> $t { u as $t }
|
|
|
|
fn to_u8(&self) -> u8 { *self as u8 }
|
2015-07-18 18:58:42 -03:00
|
|
|
fn to_u32(&self) -> u32 { *self as u32 }
|
|
|
|
fn to_u64(&self) -> u64 { *self as u64 }
|
2015-04-17 15:32:42 -07:00
|
|
|
})*)
|
|
|
|
}
|
|
|
|
doit! { i8 i16 i32 i64 isize u8 u16 u32 u64 usize }
|
|
|
|
|
2014-02-22 03:52:32 +11:00
|
|
|
/// A type that represents a specific radix
|
2014-07-25 08:26:17 -07:00
|
|
|
#[doc(hidden)]
|
2014-02-22 03:52:32 +11:00
|
|
|
trait GenericRadix {
|
|
|
|
/// The number of digits.
|
|
|
|
fn base(&self) -> u8;
|
|
|
|
|
|
|
|
/// A radix-specific prefix string.
|
2015-10-08 01:01:02 +03:00
|
|
|
fn prefix(&self) -> &'static str {
|
|
|
|
""
|
|
|
|
}
|
2014-02-22 03:52:32 +11:00
|
|
|
|
|
|
|
/// Converts an integer to corresponding radix digit.
|
|
|
|
fn digit(&self, x: u8) -> u8;
|
|
|
|
|
|
|
|
/// Format an integer using the radix using a formatter.
|
|
|
|
fn fmt_int<T: Int>(&self, mut x: T, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
// The radix can be as low as 2, so we need a buffer of at least 64
|
|
|
|
// characters for a base 2 number.
|
2015-04-17 15:32:42 -07:00
|
|
|
let zero = T::zero();
|
2014-11-10 11:30:52 +11:00
|
|
|
let is_positive = x >= zero;
|
2015-03-03 10:42:26 +02:00
|
|
|
let mut buf = [0; 64];
|
2014-02-22 03:52:32 +11:00
|
|
|
let mut curr = buf.len();
|
2015-04-17 15:32:42 -07:00
|
|
|
let base = T::from_u8(self.base());
|
2014-02-22 03:52:32 +11:00
|
|
|
if is_positive {
|
|
|
|
// Accumulate each digit of the number from the least significant
|
|
|
|
// to the most significant figure.
|
2014-09-14 20:27:36 -07:00
|
|
|
for byte in buf.iter_mut().rev() {
|
2015-04-17 15:32:42 -07:00
|
|
|
let n = x % base; // Get the current place value.
|
|
|
|
x = x / base; // Deaccumulate the number.
|
|
|
|
*byte = self.digit(n.to_u8()); // Store the digit in the buffer.
|
2014-02-22 03:52:32 +11:00
|
|
|
curr -= 1;
|
2015-10-08 01:01:02 +03:00
|
|
|
if x == zero {
|
|
|
|
// No more digits left to accumulate.
|
|
|
|
break
|
|
|
|
};
|
2014-02-22 03:52:32 +11:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Do the same as above, but accounting for two's complement.
|
2014-09-14 20:27:36 -07:00
|
|
|
for byte in buf.iter_mut().rev() {
|
2015-04-17 15:32:42 -07:00
|
|
|
let n = zero - (x % base); // Get the current place value.
|
|
|
|
x = x / base; // Deaccumulate the number.
|
|
|
|
*byte = self.digit(n.to_u8()); // Store the digit in the buffer.
|
2014-02-22 03:52:32 +11:00
|
|
|
curr -= 1;
|
2015-10-08 01:01:02 +03:00
|
|
|
if x == zero {
|
2015-10-08 01:08:33 +03:00
|
|
|
// No more digits left to accumulate.
|
2015-10-08 01:01:02 +03:00
|
|
|
break
|
2015-10-08 01:08:33 +03:00
|
|
|
};
|
2014-02-22 03:52:32 +11:00
|
|
|
}
|
|
|
|
}
|
2015-01-07 11:58:31 -05:00
|
|
|
let buf = unsafe { str::from_utf8_unchecked(&buf[curr..]) };
|
2014-12-12 10:59:41 -08:00
|
|
|
f.pad_integral(is_positive, self.prefix(), buf)
|
2014-02-22 03:52:32 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A binary (base 2) radix
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Clone, PartialEq)]
|
2014-02-22 03:52:32 +11:00
|
|
|
struct Binary;
|
|
|
|
|
|
|
|
/// An octal (base 8) radix
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Clone, PartialEq)]
|
2014-02-22 03:52:32 +11:00
|
|
|
struct Octal;
|
|
|
|
|
|
|
|
/// A decimal (base 10) radix
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Clone, PartialEq)]
|
2014-02-22 03:52:32 +11:00
|
|
|
struct Decimal;
|
|
|
|
|
2014-04-20 01:35:14 -04:00
|
|
|
/// A hexadecimal (base 16) radix, formatted with lower-case characters
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Clone, PartialEq)]
|
2014-02-22 03:52:32 +11:00
|
|
|
struct LowerHex;
|
|
|
|
|
2014-04-20 01:35:14 -04:00
|
|
|
/// A hexadecimal (base 16) radix, formatted with upper-case characters
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Clone, PartialEq)]
|
2015-02-28 19:30:06 -08:00
|
|
|
struct UpperHex;
|
2014-02-22 03:52:32 +11:00
|
|
|
|
|
|
|
macro_rules! radix {
|
|
|
|
($T:ident, $base:expr, $prefix:expr, $($x:pat => $conv:expr),+) => {
|
|
|
|
impl GenericRadix for $T {
|
|
|
|
fn base(&self) -> u8 { $base }
|
|
|
|
fn prefix(&self) -> &'static str { $prefix }
|
|
|
|
fn digit(&self, x: u8) -> u8 {
|
|
|
|
match x {
|
|
|
|
$($x => $conv,)+
|
2014-10-09 15:17:22 -04:00
|
|
|
x => panic!("number not in the range 0..{}: {}", self.base() - 1, x),
|
2014-02-22 03:52:32 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-14 09:18:10 -08:00
|
|
|
radix! { Binary, 2, "0b", x @ 0 ... 2 => b'0' + x }
|
|
|
|
radix! { Octal, 8, "0o", x @ 0 ... 7 => b'0' + x }
|
|
|
|
radix! { Decimal, 10, "", x @ 0 ... 9 => b'0' + x }
|
|
|
|
radix! { LowerHex, 16, "0x", x @ 0 ... 9 => b'0' + x,
|
|
|
|
x @ 10 ... 15 => b'a' + (x - 10) }
|
|
|
|
radix! { UpperHex, 16, "0x", x @ 0 ... 9 => b'0' + x,
|
|
|
|
x @ 10 ... 15 => b'A' + (x - 10) }
|
2014-02-22 03:52:32 +11:00
|
|
|
|
|
|
|
/// A radix with in the range of `2..36`.
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Clone, Copy, PartialEq)]
|
2015-06-09 11:18:03 -07:00
|
|
|
#[unstable(feature = "fmt_radix",
|
2015-08-12 17:23:48 -07:00
|
|
|
reason = "may be renamed or move to a different module",
|
|
|
|
issue = "27728")]
|
2014-02-22 03:52:32 +11:00
|
|
|
pub struct Radix {
|
2014-03-27 15:09:47 -07:00
|
|
|
base: u8,
|
2014-02-22 03:52:32 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Radix {
|
|
|
|
fn new(base: u8) -> Radix {
|
2015-10-08 01:01:02 +03:00
|
|
|
assert!(2 <= base && base <= 36,
|
|
|
|
"the base must be in the range of 2..36: {}",
|
|
|
|
base);
|
2014-02-22 03:52:32 +11:00
|
|
|
Radix { base: base }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GenericRadix for Radix {
|
2015-10-08 01:01:02 +03:00
|
|
|
fn base(&self) -> u8 {
|
|
|
|
self.base
|
|
|
|
}
|
2014-02-22 03:52:32 +11:00
|
|
|
fn digit(&self, x: u8) -> u8 {
|
|
|
|
match x {
|
2014-09-26 21:13:20 -07:00
|
|
|
x @ 0 ... 9 => b'0' + x,
|
2014-08-06 02:30:17 -04:00
|
|
|
x if x < self.base() => b'a' + (x - 10),
|
2014-10-09 15:17:22 -04:00
|
|
|
x => panic!("number not in the range 0..{}: {}", self.base() - 1, x),
|
2014-02-22 03:52:32 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A helper type for formatting radixes.
|
2015-06-09 11:18:03 -07:00
|
|
|
#[unstable(feature = "fmt_radix",
|
2015-08-12 17:23:48 -07:00
|
|
|
reason = "may be renamed or move to a different module",
|
|
|
|
issue = "27728")]
|
2015-03-30 09:40:52 -04:00
|
|
|
#[derive(Copy, Clone)]
|
2014-02-22 03:52:32 +11:00
|
|
|
pub struct RadixFmt<T, R>(T, R);
|
|
|
|
|
|
|
|
/// Constructs a radix formatter in the range of `2..36`.
|
|
|
|
///
|
2015-03-11 21:11:40 -04:00
|
|
|
/// # Examples
|
2014-02-22 03:52:32 +11:00
|
|
|
///
|
2014-09-16 13:27:34 +02:00
|
|
|
/// ```
|
2015-07-27 10:50:19 -04:00
|
|
|
/// #![feature(fmt_radix)]
|
|
|
|
///
|
2014-02-22 03:52:32 +11:00
|
|
|
/// use std::fmt::radix;
|
2015-01-22 14:08:56 +00:00
|
|
|
/// assert_eq!(format!("{}", radix(55, 36)), "1j".to_string());
|
2014-09-16 13:27:34 +02:00
|
|
|
/// ```
|
2015-06-09 11:18:03 -07:00
|
|
|
#[unstable(feature = "fmt_radix",
|
2015-08-12 17:23:48 -07:00
|
|
|
reason = "may be renamed or move to a different module",
|
|
|
|
issue = "27728")]
|
2014-02-22 03:52:32 +11:00
|
|
|
pub fn radix<T>(x: T, base: u8) -> RadixFmt<T, Radix> {
|
|
|
|
RadixFmt(x, Radix::new(base))
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! radix_fmt {
|
2015-02-28 19:30:06 -08:00
|
|
|
($T:ty as $U:ty, $fmt:ident) => {
|
2015-01-24 09:15:42 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 15:45:07 -08:00
|
|
|
impl fmt::Debug for RadixFmt<$T, Radix> {
|
2014-12-20 00:09:35 -08:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-01-20 15:45:07 -08:00
|
|
|
fmt::Display::fmt(self, f)
|
2014-12-20 00:09:35 -08:00
|
|
|
}
|
|
|
|
}
|
2015-01-24 09:15:42 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 15:45:07 -08:00
|
|
|
impl fmt::Display for RadixFmt<$T, Radix> {
|
2014-02-22 03:52:32 +11:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self { RadixFmt(ref x, radix) => radix.$fmt(*x as $U, f) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-18 18:58:42 -03:00
|
|
|
|
2014-02-22 03:52:32 +11:00
|
|
|
macro_rules! int_base {
|
|
|
|
($Trait:ident for $T:ident as $U:ident -> $Radix:ident) => {
|
2015-01-24 09:15:42 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-02-22 03:52:32 +11:00
|
|
|
impl fmt::$Trait for $T {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
$Radix.fmt_int(*self as $U, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-20 00:09:35 -08:00
|
|
|
|
2015-02-28 19:30:06 -08:00
|
|
|
macro_rules! debug {
|
|
|
|
($T:ident) => {
|
2015-01-24 09:15:42 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 15:45:07 -08:00
|
|
|
impl fmt::Debug for $T {
|
2014-12-20 00:09:35 -08:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-01-20 15:45:07 -08:00
|
|
|
fmt::Display::fmt(self, f)
|
2014-12-20 00:09:35 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-18 18:58:42 -03:00
|
|
|
|
2014-02-22 03:52:32 +11:00
|
|
|
macro_rules! integer {
|
|
|
|
($Int:ident, $Uint:ident) => {
|
2014-11-14 09:18:10 -08:00
|
|
|
int_base! { Binary for $Int as $Uint -> Binary }
|
|
|
|
int_base! { Octal for $Int as $Uint -> Octal }
|
|
|
|
int_base! { LowerHex for $Int as $Uint -> LowerHex }
|
|
|
|
int_base! { UpperHex for $Int as $Uint -> UpperHex }
|
2015-02-28 19:30:06 -08:00
|
|
|
radix_fmt! { $Int as $Int, fmt_int }
|
|
|
|
debug! { $Int }
|
2014-11-14 09:18:10 -08:00
|
|
|
|
|
|
|
int_base! { Binary for $Uint as $Uint -> Binary }
|
|
|
|
int_base! { Octal for $Uint as $Uint -> Octal }
|
|
|
|
int_base! { LowerHex for $Uint as $Uint -> LowerHex }
|
|
|
|
int_base! { UpperHex for $Uint as $Uint -> UpperHex }
|
2015-02-28 19:30:06 -08:00
|
|
|
radix_fmt! { $Uint as $Uint, fmt_int }
|
|
|
|
debug! { $Uint }
|
2014-02-22 03:52:32 +11:00
|
|
|
}
|
|
|
|
}
|
2015-02-28 19:30:06 -08:00
|
|
|
integer! { isize, usize }
|
2014-11-14 09:18:10 -08:00
|
|
|
integer! { i8, u8 }
|
|
|
|
integer! { i16, u16 }
|
|
|
|
integer! { i32, u32 }
|
|
|
|
integer! { i64, u64 }
|
2015-07-18 18:58:42 -03:00
|
|
|
|
|
|
|
const DEC_DIGITS_LUT: &'static[u8] =
|
|
|
|
b"0001020304050607080910111213141516171819\
|
|
|
|
2021222324252627282930313233343536373839\
|
|
|
|
4041424344454647484950515253545556575859\
|
|
|
|
6061626364656667686970717273747576777879\
|
|
|
|
8081828384858687888990919293949596979899";
|
|
|
|
|
|
|
|
macro_rules! impl_Display {
|
|
|
|
($($t:ident),*: $conv_fn:ident) => ($(
|
2015-11-16 19:54:28 +03:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-07-18 18:58:42 -03:00
|
|
|
impl fmt::Display for $t {
|
|
|
|
#[allow(unused_comparisons)]
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
let is_positive = *self >= 0;
|
|
|
|
let mut n = if is_positive {
|
|
|
|
self.$conv_fn()
|
|
|
|
} else {
|
|
|
|
// convert the negative num to positive by summing 1 to it's 2 complement
|
|
|
|
(!self.$conv_fn()).wrapping_add(1)
|
|
|
|
};
|
|
|
|
let mut buf: [u8; 20] = unsafe { mem::uninitialized() };
|
|
|
|
let mut curr = buf.len() as isize;
|
|
|
|
let buf_ptr = buf.as_mut_ptr();
|
|
|
|
let lut_ptr = DEC_DIGITS_LUT.as_ptr();
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
// eagerly decode 4 characters at a time
|
|
|
|
if <$t>::max_value() as u64 >= 10000 {
|
|
|
|
while n >= 10000 {
|
|
|
|
let rem = (n % 10000) as isize;
|
|
|
|
n /= 10000;
|
|
|
|
|
|
|
|
let d1 = (rem / 100) << 1;
|
|
|
|
let d2 = (rem % 100) << 1;
|
|
|
|
curr -= 4;
|
|
|
|
ptr::copy_nonoverlapping(lut_ptr.offset(d1), buf_ptr.offset(curr), 2);
|
|
|
|
ptr::copy_nonoverlapping(lut_ptr.offset(d2), buf_ptr.offset(curr + 2), 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we reach here numbers are <= 9999, so at most 4 chars long
|
|
|
|
let mut n = n as isize; // possibly reduce 64bit math
|
|
|
|
|
|
|
|
// decode 2 more chars, if > 2 chars
|
|
|
|
if n >= 100 {
|
|
|
|
let d1 = (n % 100) << 1;
|
|
|
|
n /= 100;
|
|
|
|
curr -= 2;
|
|
|
|
ptr::copy_nonoverlapping(lut_ptr.offset(d1), buf_ptr.offset(curr), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode last 1 or 2 chars
|
|
|
|
if n < 10 {
|
|
|
|
curr -= 1;
|
|
|
|
*buf_ptr.offset(curr) = (n as u8) + 48;
|
|
|
|
} else {
|
|
|
|
let d1 = n << 1;
|
|
|
|
curr -= 2;
|
|
|
|
ptr::copy_nonoverlapping(lut_ptr.offset(d1), buf_ptr.offset(curr), 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let buf_slice = unsafe {
|
|
|
|
str::from_utf8_unchecked(
|
|
|
|
slice::from_raw_parts(buf_ptr.offset(curr), buf.len() - curr as usize))
|
|
|
|
};
|
|
|
|
f.pad_integral(is_positive, "", buf_slice)
|
|
|
|
}
|
|
|
|
})*);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_Display!(i8, u8, i16, u16, i32, u32: to_u32);
|
|
|
|
impl_Display!(i64, u64: to_u64);
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
|
|
|
impl_Display!(isize, usize: to_u32);
|
|
|
|
#[cfg(target_pointer_width = "64")]
|
|
|
|
impl_Display!(isize, usize: to_u64);
|