2014-08-30 16:53:25 +02:00
|
|
|
package null
|
|
|
|
|
|
|
|
import (
|
2016-11-10 16:00:05 +01:00
|
|
|
"bytes"
|
2016-05-17 14:02:36 +02:00
|
|
|
"database/sql/driver"
|
2014-08-30 16:53:25 +02:00
|
|
|
"encoding/json"
|
|
|
|
"strconv"
|
2016-05-18 09:00:15 +02:00
|
|
|
|
2016-09-07 13:33:21 +02:00
|
|
|
"gopkg.in/nullbio/null.v5/convert"
|
2014-08-30 16:53:25 +02:00
|
|
|
)
|
|
|
|
|
2016-05-17 14:02:36 +02:00
|
|
|
// Int is an nullable int.
|
2014-08-30 16:53:25 +02:00
|
|
|
type Int struct {
|
2016-11-10 16:00:05 +01:00
|
|
|
Int int
|
|
|
|
Valid bool
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewInt creates a new Int
|
2016-05-17 14:02:36 +02:00
|
|
|
func NewInt(i int, valid bool) Int {
|
2014-08-30 16:53:25 +02:00
|
|
|
return Int{
|
2016-11-10 16:00:05 +01:00
|
|
|
Int: i,
|
|
|
|
Valid: valid,
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-01 20:22:17 +02:00
|
|
|
// IntFrom creates a new Int that will always be valid.
|
2016-05-17 14:02:36 +02:00
|
|
|
func IntFrom(i int) Int {
|
2014-09-01 20:22:17 +02:00
|
|
|
return NewInt(i, true)
|
2014-08-31 10:28:34 +02:00
|
|
|
}
|
|
|
|
|
2014-09-02 02:24:56 +02:00
|
|
|
// IntFromPtr creates a new Int that be null if i is nil.
|
2016-05-17 14:02:36 +02:00
|
|
|
func IntFromPtr(i *int) Int {
|
2014-08-31 10:28:34 +02:00
|
|
|
if i == nil {
|
|
|
|
return NewInt(0, false)
|
|
|
|
}
|
2014-09-01 20:22:17 +02:00
|
|
|
return NewInt(*i, true)
|
2014-08-31 10:28:34 +02:00
|
|
|
}
|
|
|
|
|
2014-08-30 16:53:25 +02:00
|
|
|
// UnmarshalJSON implements json.Unmarshaler.
|
|
|
|
func (i *Int) UnmarshalJSON(data []byte) error {
|
2016-11-10 16:00:05 +01:00
|
|
|
if bytes.Equal(data, NullBytes) {
|
2014-08-30 16:53:25 +02:00
|
|
|
i.Valid = false
|
2016-11-10 16:00:05 +01:00
|
|
|
i.Int = 0
|
2014-08-30 16:53:25 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
|
|
|
|
var x int64
|
|
|
|
if err := json.Unmarshal(data, &x); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
i.Int = int(x)
|
|
|
|
i.Valid = true
|
|
|
|
return nil
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalText implements encoding.TextUnmarshaler.
|
|
|
|
func (i *Int) UnmarshalText(text []byte) error {
|
2016-11-10 16:40:50 +01:00
|
|
|
if len(text) == 0 || bytes.Equal(text, NullBytes) {
|
2014-08-30 16:53:25 +02:00
|
|
|
i.Valid = false
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var err error
|
2016-05-17 14:02:36 +02:00
|
|
|
res, err := strconv.ParseInt(string(text), 10, 0)
|
2014-09-01 20:22:17 +02:00
|
|
|
i.Valid = err == nil
|
2016-05-17 14:02:36 +02:00
|
|
|
if i.Valid {
|
|
|
|
i.Int = int(res)
|
|
|
|
}
|
2014-08-30 16:53:25 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalJSON implements json.Marshaler.
|
|
|
|
func (i Int) MarshalJSON() ([]byte, error) {
|
|
|
|
if !i.Valid {
|
2016-11-10 16:40:50 +01:00
|
|
|
return NullBytes, nil
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
2016-05-17 14:02:36 +02:00
|
|
|
return []byte(strconv.FormatInt(int64(i.Int), 10)), nil
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalText implements encoding.TextMarshaler.
|
|
|
|
func (i Int) MarshalText() ([]byte, error) {
|
|
|
|
if !i.Valid {
|
2014-09-01 20:22:17 +02:00
|
|
|
return []byte{}, nil
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
2016-05-17 14:02:36 +02:00
|
|
|
return []byte(strconv.FormatInt(int64(i.Int), 10)), nil
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
|
|
|
|
2014-09-01 07:25:57 +02:00
|
|
|
// SetValid changes this Int's value and also sets it to be non-null.
|
2016-05-17 14:02:36 +02:00
|
|
|
func (i *Int) SetValid(n int) {
|
|
|
|
i.Int = n
|
2014-09-01 07:25:57 +02:00
|
|
|
i.Valid = true
|
|
|
|
}
|
|
|
|
|
2014-08-31 10:28:34 +02:00
|
|
|
// Ptr returns a pointer to this Int's value, or a nil pointer if this Int is null.
|
2016-05-17 14:02:36 +02:00
|
|
|
func (i Int) Ptr() *int {
|
2014-08-30 16:53:25 +02:00
|
|
|
if !i.Valid {
|
|
|
|
return nil
|
|
|
|
}
|
2016-05-17 14:02:36 +02:00
|
|
|
return &i.Int
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
|
|
|
|
2014-09-01 20:22:17 +02:00
|
|
|
// IsZero returns true for invalid Ints, for future omitempty support (Go 1.4?)
|
2014-08-30 16:53:25 +02:00
|
|
|
func (i Int) IsZero() bool {
|
2014-09-01 20:22:17 +02:00
|
|
|
return !i.Valid
|
2014-08-30 16:53:25 +02:00
|
|
|
}
|
2016-05-17 14:02:36 +02:00
|
|
|
|
|
|
|
// Scan implements the Scanner interface.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (i *Int) Scan(value interface{}) error {
|
2016-05-17 14:02:36 +02:00
|
|
|
if value == nil {
|
2016-11-10 16:00:05 +01:00
|
|
|
i.Int, i.Valid = 0, false
|
2016-05-17 14:02:36 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
i.Valid = true
|
|
|
|
return convert.ConvertAssign(&i.Int, value)
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Value implements the driver Valuer interface.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (i Int) Value() (driver.Value, error) {
|
|
|
|
if !i.Valid {
|
2016-05-17 14:02:36 +02:00
|
|
|
return nil, nil
|
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
return int64(i.Int), nil
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|