2020-12-01 08:40:58 +00:00
|
|
|
package fixedn
|
2018-03-04 13:56:49 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
2018-05-04 17:41:42 +00:00
|
|
|
"strings"
|
2019-12-12 15:52:23 +00:00
|
|
|
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
2018-03-04 13:56:49 +00:00
|
|
|
)
|
|
|
|
|
2018-05-04 17:41:42 +00:00
|
|
|
const (
|
|
|
|
precision = 8
|
|
|
|
decimals = 100000000
|
|
|
|
)
|
|
|
|
|
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 {
|
2018-11-26 15:56:45 +00:00
|
|
|
buf := new(strings.Builder)
|
2018-03-04 13:56:49 +00:00
|
|
|
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')
|
|
|
|
}
|
2019-08-23 10:15:09 +00:00
|
|
|
buf.WriteString(strings.TrimRight(str, "0"))
|
2018-03-04 13:56:49 +00:00
|
|
|
}
|
|
|
|
return buf.String()
|
|
|
|
}
|
2018-03-25 10:45:54 +00:00
|
|
|
|
2019-08-23 10:35:34 +00:00
|
|
|
// FloatValue returns the original value representing Fixed8 as float64.
|
|
|
|
func (f Fixed8) FloatValue() float64 {
|
|
|
|
return float64(f) / decimals
|
|
|
|
}
|
|
|
|
|
2020-03-04 10:26:08 +00:00
|
|
|
// IntegralValue returns integer part of the original value representing
|
|
|
|
// Fixed8 as int64.
|
|
|
|
func (f Fixed8) IntegralValue() int64 {
|
2019-02-20 17:39:32 +00:00
|
|
|
return int64(f) / decimals
|
2018-03-25 10:45:54 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 10:26:08 +00:00
|
|
|
// FractionalValue returns decimal part of the original value. It has the same
|
|
|
|
// sign as f, so that f = f.IntegralValue() + f.FractionalValue().
|
|
|
|
func (f Fixed8) FractionalValue() int32 {
|
|
|
|
return int32(int64(f) % decimals)
|
|
|
|
}
|
|
|
|
|
2019-08-23 12:41:22 +00:00
|
|
|
// Fixed8FromInt64 returns a new Fixed8 type multiplied by decimals.
|
|
|
|
func Fixed8FromInt64(val int64) Fixed8 {
|
2018-03-25 10:45:54 +00:00
|
|
|
return Fixed8(decimals * val)
|
|
|
|
}
|
2018-05-04 17:41:42 +00:00
|
|
|
|
2019-08-23 12:41:22 +00:00
|
|
|
// Fixed8FromFloat returns a new Fixed8 type multiplied by decimals.
|
|
|
|
func Fixed8FromFloat(val float64) Fixed8 {
|
2019-02-20 17:39:32 +00:00
|
|
|
return Fixed8(int64(decimals * val))
|
|
|
|
}
|
|
|
|
|
2019-08-23 12:41:22 +00:00
|
|
|
// Fixed8FromString parses s which must be a fixed point number
|
2021-05-12 20:17:03 +00:00
|
|
|
// with precision up to 10^-8.
|
2019-08-23 12:41:22 +00:00
|
|
|
func Fixed8FromString(s string) (Fixed8, error) {
|
2020-11-30 09:06:36 +00:00
|
|
|
num, err := FromString(s, precision)
|
2020-03-05 17:05:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2020-11-30 09:06:36 +00:00
|
|
|
return Fixed8(num.Int64()), err
|
2018-05-04 17:41:42 +00:00
|
|
|
}
|
2018-05-09 05:20:16 +00:00
|
|
|
|
|
|
|
// UnmarshalJSON implements the json unmarshaller interface.
|
|
|
|
func (f *Fixed8) UnmarshalJSON(data []byte) error {
|
2021-01-22 15:48:24 +00:00
|
|
|
if len(data) > 2 {
|
|
|
|
if data[0] == '"' && data[len(data)-1] == '"' {
|
|
|
|
data = data[1 : len(data)-1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return f.setFromString(string(data))
|
2020-01-22 06:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalYAML implements the yaml unmarshaler interface.
|
|
|
|
func (f *Fixed8) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
2018-05-09 05:20:16 +00:00
|
|
|
var s string
|
2021-01-22 15:48:24 +00:00
|
|
|
err := unmarshal(&s)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2018-05-09 05:20:16 +00:00
|
|
|
}
|
2021-01-22 15:48:24 +00:00
|
|
|
return f.setFromString(s)
|
|
|
|
}
|
2018-05-09 05:20:16 +00:00
|
|
|
|
2021-01-22 15:48:24 +00:00
|
|
|
func (f *Fixed8) setFromString(s string) error {
|
|
|
|
p, err := Fixed8FromString(s)
|
|
|
|
if err != nil {
|
2018-05-09 05:20:16 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-01-22 15:48:24 +00:00
|
|
|
*f = p
|
2018-05-09 05:20:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
2018-11-26 15:56:45 +00:00
|
|
|
|
|
|
|
// MarshalJSON implements the json marshaller interface.
|
|
|
|
func (f Fixed8) MarshalJSON() ([]byte, error) {
|
|
|
|
return []byte(`"` + f.String() + `"`), nil
|
|
|
|
}
|
2019-02-20 17:39:32 +00:00
|
|
|
|
2020-01-22 06:58:24 +00:00
|
|
|
// MarshalYAML implements the yaml marshaller interface.
|
|
|
|
func (f Fixed8) MarshalYAML() (interface{}, error) {
|
|
|
|
return f.String(), nil
|
|
|
|
}
|
|
|
|
|
2019-12-12 15:52:23 +00:00
|
|
|
// DecodeBinary implements the io.Serializable interface.
|
|
|
|
func (f *Fixed8) DecodeBinary(r *io.BinReader) {
|
|
|
|
*f = Fixed8(r.ReadU64LE())
|
|
|
|
}
|
|
|
|
|
|
|
|
// EncodeBinary implements the io.Serializable interface.
|
|
|
|
func (f *Fixed8) EncodeBinary(w *io.BinWriter) {
|
|
|
|
w.WriteU64LE(uint64(*f))
|
|
|
|
}
|
|
|
|
|
2019-02-20 17:39:32 +00:00
|
|
|
// Satoshi defines the value of a 'Satoshi'.
|
|
|
|
func Satoshi() Fixed8 {
|
2019-08-23 12:37:01 +00:00
|
|
|
return Fixed8(1)
|
2019-02-20 17:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Div implements Fixd8 division operator.
|
|
|
|
func (f Fixed8) Div(i int64) Fixed8 {
|
2019-08-23 12:41:22 +00:00
|
|
|
return f / Fixed8FromInt64(i)
|
2019-02-20 17:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add implements Fixd8 addition operator.
|
|
|
|
func (f Fixed8) Add(g Fixed8) Fixed8 {
|
2019-08-23 10:22:10 +00:00
|
|
|
return f + g
|
2019-02-20 17:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sub implements Fixd8 subtraction operator.
|
|
|
|
func (f Fixed8) Sub(g Fixed8) Fixed8 {
|
2019-08-23 10:22:10 +00:00
|
|
|
return f - g
|
2019-02-20 17:39:32 +00:00
|
|
|
}
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
|
|
|
|
// LessThan implements Fixd8 < operator.
|
|
|
|
func (f Fixed8) LessThan(g Fixed8) bool {
|
2019-08-23 10:22:10 +00:00
|
|
|
return f < g
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GreaterThan implements Fixd8 < operator.
|
|
|
|
func (f Fixed8) GreaterThan(g Fixed8) bool {
|
2019-08-23 10:22:10 +00:00
|
|
|
return f > g
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Equal implements Fixd8 == operator.
|
|
|
|
func (f Fixed8) Equal(g Fixed8) bool {
|
2019-08-23 10:22:10 +00:00
|
|
|
return f == g
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CompareTo returns the difference between the f and g.
|
|
|
|
// difference < 0 implies f < g.
|
|
|
|
// difference = 0 implies f = g.
|
|
|
|
// difference > 0 implies f > g.
|
|
|
|
func (f Fixed8) CompareTo(g Fixed8) int {
|
2019-08-23 10:22:10 +00:00
|
|
|
return int(f - g)
|
Implement rpc server method: sendrawtransaction (#174)
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold'
* Added new files:
* Added new method: CompareTo
* Fixed empty Slice case
* Added new methods: LessThan, GreaterThan, Equal, CompareTo
* Added new method: InputIntersection
* Added MaxTransactionSize, GroupOutputByAssetID
* Added ned method: ScriptHash
* Added new method: IsDoubleSpend
* Refactor blockchainer, Added Feer interface, Verify and GetMemPool method
* 1) Added MemPool
2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool
* Added new methods: RelayTxn, RelayDirectly
* Fixed tests
* Implemented RPC server method sendrawtransaction
* Refactor getrawtransaction, sendrawtransaction in separate methods
* Moved 'secondsPerBlock' to config file
* Implemented Kim suggestions:
1) Fixed data race issues
2) refactor Verify method
3) Get rid of unused InputIntersection method due to refactoring Verify method
4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135
5) minor simplications of the code
* Fixed minor issues related to
1) space
2) getter methods do not need pointer on the receiver
3) error message
4) refactoring CompareTo method in uint256.go
* Fixed small issues
* Use sync.RWMutex instead of sync.Mutex
* Refined (R)Lock/(R)Unlock
* return error instead of bool in Verify methods
2019-03-20 12:30:05 +00:00
|
|
|
}
|