mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 12:30:49 +01:00
Avoid reallocation of initial slice in MarshalBinary (GobEncode) (#355)
This commit is contained in:
parent
78289cc844
commit
547861c49b
1 changed files with 9 additions and 10 deletions
19
decimal.go
19
decimal.go
|
@ -1784,19 +1784,18 @@ func (d *Decimal) UnmarshalBinary(data []byte) error {
|
||||||
|
|
||||||
// MarshalBinary implements the encoding.BinaryMarshaler interface.
|
// MarshalBinary implements the encoding.BinaryMarshaler interface.
|
||||||
func (d Decimal) MarshalBinary() (data []byte, err error) {
|
func (d Decimal) MarshalBinary() (data []byte, err error) {
|
||||||
// Write the exponent first since it's a fixed size
|
// exp is written first, but encode value first to know output size
|
||||||
v1 := make([]byte, 4)
|
var valueData []byte
|
||||||
binary.BigEndian.PutUint32(v1, uint32(d.exp))
|
if valueData, err = d.value.GobEncode(); err != nil {
|
||||||
|
return nil, err
|
||||||
// Add the value
|
|
||||||
var v2 []byte
|
|
||||||
if v2, err = d.value.GobEncode(); err != nil {
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Write the exponent in front, since it's a fixed size
|
||||||
|
expData := make([]byte, 4, len(valueData)+4)
|
||||||
|
binary.BigEndian.PutUint32(expData, uint32(d.exp))
|
||||||
|
|
||||||
// Return the byte array
|
// Return the byte array
|
||||||
data = append(v1, v2...)
|
return append(expData, valueData...), nil
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Scan implements the sql.Scanner interface for database deserialization.
|
// Scan implements the sql.Scanner interface for database deserialization.
|
||||||
|
|
Loading…
Reference in a new issue