2016-05-17 14:02:36 +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"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2016-11-10 16:00:05 +01:00
|
|
|
"math"
|
2016-05-17 14:02:36 +02:00
|
|
|
"strconv"
|
2016-05-18 09:00:15 +02:00
|
|
|
|
2016-11-12 02:45:55 +01:00
|
|
|
"gopkg.in/nullbio/null.v6/convert"
|
2016-05-17 14:02:36 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Uint8 is an nullable uint8.
|
|
|
|
type Uint8 struct {
|
2016-11-10 16:00:05 +01:00
|
|
|
Uint8 uint8
|
|
|
|
Valid bool
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewUint8 creates a new Uint8
|
|
|
|
func NewUint8(i uint8, valid bool) Uint8 {
|
|
|
|
return Uint8{
|
2016-11-10 16:00:05 +01:00
|
|
|
Uint8: i,
|
|
|
|
Valid: valid,
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint8From creates a new Uint8 that will always be valid.
|
|
|
|
func Uint8From(i uint8) Uint8 {
|
|
|
|
return NewUint8(i, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint8FromPtr creates a new Uint8 that be null if i is nil.
|
|
|
|
func Uint8FromPtr(i *uint8) Uint8 {
|
|
|
|
if i == nil {
|
|
|
|
return NewUint8(0, false)
|
|
|
|
}
|
|
|
|
return NewUint8(*i, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON implements json.Unmarshaler.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (u *Uint8) UnmarshalJSON(data []byte) error {
|
|
|
|
if bytes.Equal(data, NullBytes) {
|
|
|
|
u.Valid = false
|
|
|
|
u.Uint8 = 0
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var x uint64
|
|
|
|
if err := json.Unmarshal(data, &x); err != nil {
|
2016-05-17 14:02:36 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
|
|
|
|
if x > math.MaxUint8 {
|
|
|
|
return fmt.Errorf("json: %d overflows max uint8 value", x)
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
|
|
|
|
u.Uint8 = uint8(x)
|
|
|
|
u.Valid = true
|
|
|
|
return nil
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalText implements encoding.TextUnmarshaler.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (u *Uint8) UnmarshalText(text []byte) error {
|
2016-11-11 08:15:01 +01:00
|
|
|
if text == nil || len(text) == 0 {
|
2016-11-10 16:00:05 +01:00
|
|
|
u.Valid = false
|
2016-05-17 14:02:36 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
res, err := strconv.ParseUint(string(text), 10, 8)
|
2016-11-10 16:00:05 +01:00
|
|
|
u.Valid = err == nil
|
|
|
|
if u.Valid {
|
|
|
|
u.Uint8 = uint8(res)
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalJSON implements json.Marshaler.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (u Uint8) MarshalJSON() ([]byte, error) {
|
|
|
|
if !u.Valid {
|
2016-11-10 16:40:50 +01:00
|
|
|
return NullBytes, nil
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
return []byte(strconv.FormatUint(uint64(u.Uint8), 10)), nil
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalText implements encoding.TextMarshaler.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (u Uint8) MarshalText() ([]byte, error) {
|
|
|
|
if !u.Valid {
|
2016-05-17 14:02:36 +02:00
|
|
|
return []byte{}, nil
|
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
return []byte(strconv.FormatUint(uint64(u.Uint8), 10)), nil
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetValid changes this Uint8's value and also sets it to be non-null.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (u *Uint8) SetValid(n uint8) {
|
|
|
|
u.Uint8 = n
|
|
|
|
u.Valid = true
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ptr returns a pointer to this Uint8's value, or a nil pointer if this Uint8 is null.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (u Uint8) Ptr() *uint8 {
|
|
|
|
if !u.Valid {
|
2016-05-17 14:02:36 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
return &u.Uint8
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
2017-07-06 20:14:43 +02:00
|
|
|
// IsNull returns true for invalid Uint8's, for future omitempty support (Go 1.4?)
|
|
|
|
func (u Uint8) IsNull() bool {
|
2016-11-10 16:00:05 +01:00
|
|
|
return !u.Valid
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Scan implements the Scanner interface.
|
2016-11-10 16:00:05 +01:00
|
|
|
func (u *Uint8) Scan(value interface{}) error {
|
2016-05-17 14:02:36 +02:00
|
|
|
if value == nil {
|
2016-11-10 16:00:05 +01:00
|
|
|
u.Uint8, u.Valid = 0, false
|
2016-05-17 14:02:36 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-11-10 16:00:05 +01:00
|
|
|
u.Valid = true
|
|
|
|
return convert.ConvertAssign(&u.Uint8, value)
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Value implements the driver Valuer interface.
|
2016-11-10 16:40:50 +01:00
|
|
|
func (u Uint8) Value() (driver.Value, error) {
|
|
|
|
if !u.Valid {
|
2016-05-17 14:02:36 +02:00
|
|
|
return nil, nil
|
|
|
|
}
|
2016-11-10 16:40:50 +01:00
|
|
|
return int64(u.Uint8), nil
|
2016-05-17 14:02:36 +02:00
|
|
|
}
|