2018-03-04 13:56:49 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-05-04 17:41:42 +00:00
|
|
|
"errors"
|
2018-03-04 13:56:49 +00:00
|
|
|
"strconv"
|
2018-05-04 17:41:42 +00:00
|
|
|
"strings"
|
2018-03-04 13:56:49 +00:00
|
|
|
)
|
|
|
|
|
2018-05-04 17:41:42 +00:00
|
|
|
const (
|
|
|
|
precision = 8
|
|
|
|
decimals = 100000000
|
|
|
|
)
|
|
|
|
|
|
|
|
var errInvalidString = errors.New("Fixed8 must satisfy following regex \\d+(\\.\\d{1,8})?")
|
2018-03-25 10:45:54 +00:00
|
|
|
|
2018-03-04 13:56:49 +00:00
|
|
|
// Fixed8 represents a fixed-point number with precision 10^-8.
|
|
|
|
type Fixed8 int64
|
|
|
|
|
|
|
|
// String implements the Stringer interface.
|
|
|
|
func (f Fixed8) String() string {
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
val := int64(f)
|
|
|
|
if val < 0 {
|
|
|
|
buf.WriteRune('-')
|
|
|
|
val = -val
|
|
|
|
}
|
2018-03-25 10:45:54 +00:00
|
|
|
str := strconv.FormatInt(val/decimals, 10)
|
2018-03-04 13:56:49 +00:00
|
|
|
buf.WriteString(str)
|
2018-03-25 10:45:54 +00:00
|
|
|
val %= decimals
|
2018-03-04 13:56:49 +00:00
|
|
|
if val > 0 {
|
|
|
|
buf.WriteRune('.')
|
|
|
|
str = strconv.FormatInt(val, 10)
|
|
|
|
for i := len(str); i < 8; i++ {
|
|
|
|
buf.WriteRune('0')
|
|
|
|
}
|
|
|
|
buf.WriteString(str)
|
|
|
|
}
|
|
|
|
return buf.String()
|
|
|
|
}
|
2018-03-25 10:45:54 +00:00
|
|
|
|
|
|
|
// Value returns the original value representing the Fixed8.
|
|
|
|
func (f Fixed8) Value() int64 {
|
|
|
|
return int64(f) / int64(decimals)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFixed8 return a new Fixed8 type multiplied by decimals.
|
|
|
|
func NewFixed8(val int) Fixed8 {
|
|
|
|
return Fixed8(decimals * val)
|
|
|
|
}
|
2018-05-04 17:41:42 +00:00
|
|
|
|
|
|
|
// Fixed8DecodeString
|
|
|
|
func Fixed8DecodeString(s string) (Fixed8, error) {
|
|
|
|
parts := strings.SplitN(s, ".", 2)
|
|
|
|
ip, err := strconv.Atoi(parts[0])
|
|
|
|
if err != nil {
|
|
|
|
return 0, errInvalidString
|
|
|
|
} else if len(parts) == 1 {
|
|
|
|
return NewFixed8(ip), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
fp, err := strconv.Atoi(parts[1])
|
|
|
|
if err != nil || fp >= decimals {
|
|
|
|
return 0, errInvalidString
|
|
|
|
}
|
|
|
|
for i := len(parts[1]); i < precision; i++ {
|
|
|
|
fp *= 10
|
|
|
|
}
|
|
|
|
return Fixed8(ip*decimals + fp), nil
|
|
|
|
}
|