2012-03-27 23:13:14 +00:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package strconv
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// FormatUint returns the string representation of i in the given base,
|
|
|
|
// for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
|
|
|
|
// for digit values >= 10.
|
2012-03-27 23:13:14 +00:00
|
|
|
func FormatUint(i uint64, base int) string {
|
|
|
|
_, s := formatBits(nil, i, base, false, false)
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// FormatInt returns the string representation of i in the given base,
|
|
|
|
// for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
|
|
|
|
// for digit values >= 10.
|
2012-03-27 23:13:14 +00:00
|
|
|
func FormatInt(i int64, base int) string {
|
|
|
|
_, s := formatBits(nil, uint64(i), base, i < 0, false)
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
// Itoa is shorthand for FormatInt(int64(i), 10).
|
2012-03-27 23:13:14 +00:00
|
|
|
func Itoa(i int) string {
|
|
|
|
return FormatInt(int64(i), 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AppendInt appends the string form of the integer i,
|
|
|
|
// as generated by FormatInt, to dst and returns the extended buffer.
|
|
|
|
func AppendInt(dst []byte, i int64, base int) []byte {
|
|
|
|
dst, _ = formatBits(dst, uint64(i), base, i < 0, true)
|
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
|
|
|
// AppendUint appends the string form of the unsigned integer i,
|
|
|
|
// as generated by FormatUint, to dst and returns the extended buffer.
|
|
|
|
func AppendUint(dst []byte, i uint64, base int) []byte {
|
|
|
|
dst, _ = formatBits(dst, i, base, false, true)
|
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2017-04-10 11:32:00 +00:00
|
|
|
digits = "0123456789abcdefghijklmnopqrstuvwxyz"
|
2012-03-27 23:13:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var shifts = [len(digits) + 1]uint{
|
|
|
|
1 << 1: 1,
|
|
|
|
1 << 2: 2,
|
|
|
|
1 << 3: 3,
|
|
|
|
1 << 4: 4,
|
|
|
|
1 << 5: 5,
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatBits computes the string representation of u in the given base.
|
|
|
|
// If neg is set, u is treated as negative int64 value. If append_ is
|
|
|
|
// set, the string is appended to dst and the resulting byte slice is
|
|
|
|
// returned as the first result value; otherwise the string is returned
|
|
|
|
// as the second result value.
|
|
|
|
//
|
|
|
|
func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {
|
|
|
|
if base < 2 || base > len(digits) {
|
|
|
|
panic("strconv: illegal AppendInt/FormatInt base")
|
|
|
|
}
|
|
|
|
// 2 <= base && base <= len(digits)
|
|
|
|
|
|
|
|
var a [64 + 1]byte // +1 for sign of 64bit value in base 2
|
|
|
|
i := len(a)
|
|
|
|
|
|
|
|
if neg {
|
|
|
|
u = -u
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert bits
|
|
|
|
if base == 10 {
|
2017-04-10 11:32:00 +00:00
|
|
|
// common case: use constants for / because
|
|
|
|
// the compiler can optimize it into a multiply+shift
|
|
|
|
|
|
|
|
if ^uintptr(0)>>32 == 0 {
|
|
|
|
for u > uint64(^uintptr(0)) {
|
|
|
|
q := u / 1e9
|
|
|
|
us := uintptr(u - q*1e9) // us % 1e9 fits into a uintptr
|
|
|
|
for j := 9; j > 0; j-- {
|
|
|
|
i--
|
|
|
|
qs := us / 10
|
|
|
|
a[i] = byte(us - qs*10 + '0')
|
|
|
|
us = qs
|
|
|
|
}
|
|
|
|
u = q
|
|
|
|
}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
|
|
|
|
// u guaranteed to fit into a uintptr
|
|
|
|
us := uintptr(u)
|
|
|
|
for us >= 10 {
|
2012-03-27 23:13:14 +00:00
|
|
|
i--
|
2017-04-10 11:32:00 +00:00
|
|
|
q := us / 10
|
|
|
|
a[i] = byte(us - q*10 + '0')
|
|
|
|
us = q
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
// u < 10
|
|
|
|
i--
|
|
|
|
a[i] = byte(us + '0')
|
2012-03-27 23:13:14 +00:00
|
|
|
|
|
|
|
} else if s := shifts[base]; s > 0 {
|
|
|
|
// base is power of 2: use shifts and masks instead of / and %
|
|
|
|
b := uint64(base)
|
|
|
|
m := uintptr(b) - 1 // == 1<<s - 1
|
|
|
|
for u >= b {
|
|
|
|
i--
|
|
|
|
a[i] = digits[uintptr(u)&m]
|
|
|
|
u >>= s
|
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
// u < base
|
|
|
|
i--
|
|
|
|
a[i] = digits[uintptr(u)]
|
2012-03-27 23:13:14 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
// general case
|
|
|
|
b := uint64(base)
|
|
|
|
for u >= b {
|
|
|
|
i--
|
2017-04-10 11:32:00 +00:00
|
|
|
q := u / b
|
|
|
|
a[i] = digits[uintptr(u-q*b)]
|
|
|
|
u = q
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
2017-04-10 11:32:00 +00:00
|
|
|
// u < base
|
|
|
|
i--
|
|
|
|
a[i] = digits[uintptr(u)]
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// add sign, if any
|
|
|
|
if neg {
|
|
|
|
i--
|
|
|
|
a[i] = '-'
|
|
|
|
}
|
|
|
|
|
|
|
|
if append_ {
|
|
|
|
d = append(dst, a[i:]...)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
s = string(a[i:])
|
|
|
|
return
|
|
|
|
}
|