-
Notifications
You must be signed in to change notification settings - Fork 0
/
formatnumber.go
157 lines (133 loc) · 4.92 KB
/
formatnumber.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package accounting
import (
"bytes"
"fmt"
"math/big"
"reflect"
"strings"
"github.com/cockroachdb/apd"
"github.com/shopspring/decimal"
)
func formatNumberString(x string, precision int, thousand string, decimalStr string) string {
lastIndex := strings.Index(x, ".") - 1
if lastIndex < 0 {
lastIndex = len(x) - 1
}
var buffer []byte
var strBuffer bytes.Buffer
j := 0
for i := lastIndex; i >= 0; i-- {
j++
buffer = append(buffer, x[i])
if j == 3 && i > 0 && !(i == 1 && x[0] == '-') {
buffer = append(buffer, ',')
j = 0
}
}
for i := len(buffer) - 1; i >= 0; i-- {
strBuffer.WriteByte(buffer[i])
}
result := strBuffer.String()
if thousand != "," {
result = strings.Replace(result, ",", thousand, -1)
}
extra := x[lastIndex+1:]
if decimalStr != "." {
extra = strings.Replace(extra, ".", decimalStr, 1)
}
return result + extra
}
// FormatNumber is a base function of the library which formats a number with custom precision and separators.
// FormatNumber supports various types of value by runtime reflection.
// If you don't need runtime type evaluation, please refer to FormatNumberInt or FormatNumberFloat64.
// (supported value types : int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, float32, float64, *big.Rat)
// (also supported value types : decimal.Decimal, *decimal.Decimal *apd.Decimal)
func FormatNumber(value interface{}, precision int, thousand string, decimalStr string) string {
v := reflect.ValueOf(value)
var x string
switch v.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
x = fmt.Sprintf("%d", v.Int())
if precision > 0 {
x += "." + strings.Repeat("0", precision)
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
x = fmt.Sprintf("%d", v.Uint())
if precision > 0 {
x += "." + strings.Repeat("0", precision)
}
case reflect.Float32, reflect.Float64:
x = fmt.Sprintf(fmt.Sprintf("%%.%df", precision), v.Float())
case reflect.Struct:
switch v.Type().String() {
case "decimal.Decimal":
x = value.(decimal.Decimal).StringFixed(int32(precision))
default:
panic("Unsupported type - " + v.Type().String() + " - kind " + v.Kind().String())
}
case reflect.Ptr:
switch v.Type().String() {
case "*big.Rat":
x = value.(*big.Rat).FloatString(precision)
case "*apd.Decimal":
v := value.(*apd.Decimal)
d := apd.New(0, 0)
apd.BaseContext.WithPrecision(uint32(v.NumDigits()) + uint32(precision)).Quantize(d, v, int32(-precision))
x = d.Text('f')
case "*decimal.Decimal":
x = value.(*decimal.Decimal).StringFixed(int32(precision))
default:
panic("Unsupported type - " + v.Type().String() + " - kind " + v.Kind().String())
}
default:
panic("Unsupported type - " + v.Type().String() + " - kind " + v.Kind().String())
}
return formatNumberString(x, precision, thousand, decimalStr)
}
// FormatNumberInt only supports int value. It is faster than FormatNumber,
// because it does not do any runtime type evaluation.
func FormatNumberInt(x int, precision int, thousand string, decimalStr string) string {
var result string
var minus bool
if x < 0 {
if x * -1 < 0 {
return FormatNumber(x, precision, thousand, decimalStr)
}
minus = true
x *= -1
}
for x >= 1000 {
result = fmt.Sprintf("%s%03d%s", thousand, x%1000, result)
x /= 1000
}
result = fmt.Sprintf("%d%s", x, result)
if minus {
result = "-" + result
}
if precision > 0 {
result += decimalStr + strings.Repeat("0", precision)
}
return result
}
// FormatNumberFloat64 only supports float64 value.
// It is faster than FormatNumber, because it does not do any runtime type evaluation.
func FormatNumberFloat64(x float64, precision int, thousand string, decimalStr string) string {
return formatNumberString(fmt.Sprintf(fmt.Sprintf("%%.%df", precision), x), precision, thousand, decimalStr)
}
// FormatNumberBigRat only supports *big.Rat value.
// It is faster than FormatNumber, because it does not do any runtime type evaluation.
func FormatNumberBigRat(x *big.Rat, precision int, thousand string, decimalStr string) string {
return formatNumberString(x.FloatString(precision), precision, thousand, decimalStr)
}
// FormatNumberBigDecimal only supports *apd.Decimal value.
// It is faster than FormatNumber, because it does not do any runtime type evaluation.
func FormatNumberBigDecimal(x *apd.Decimal, precision int, thousand string, decimalStr string) string {
d := apd.New(0, 0)
apd.BaseContext.WithPrecision(uint32(x.NumDigits()) + uint32(precision)).Quantize(d, x, int32(-precision))
return formatNumberString(d.Text('f'), precision, thousand, decimalStr)
}
// FormatNumberDecimal only supports decimal.Decimal value.
// It is faster than FormatNumber, because it does not do any runtime type evaluation.
func FormatNumberDecimal(x decimal.Decimal, precision int, thousand string, decimalStr string) string {
return formatNumberString(x.StringFixed(int32(precision)), precision, thousand, decimalStr)
}