lbry.go/string.go

99 lines
2.4 KiB
Go
Raw Normal View History

// Package null contains types that consider zero input and null input as separate values.
// Types in this package will always encode to their null value if null.
// Use the zero subpackage if you want empty and null to be treated the same.
2014-08-28 17:11:18 +02:00
package null
import (
"database/sql"
"encoding/json"
"fmt"
"reflect"
2014-08-28 17:11:18 +02:00
)
// String is an even nuller nullable string.
2014-08-28 17:11:18 +02:00
type String struct {
sql.NullString
}
// StringFrom creates a new String that will never be blank.
func StringFrom(s string) String {
return NewString(s, true)
}
// StringFromPtr creates a new String that be null if s is nil.
func StringFromPtr(s *string) String {
if s == nil {
return NewString("", false)
}
return NewString(*s, true)
}
2014-08-29 03:29:17 +02:00
// NewString creates a new String
func NewString(s string, valid bool) String {
2014-08-28 17:11:18 +02:00
return String{
NullString: sql.NullString{
String: s,
2014-08-29 04:31:09 +02:00
Valid: valid,
2014-08-28 17:11:18 +02:00
},
}
}
2014-08-29 03:29:17 +02:00
// UnmarshalJSON implements json.Unmarshaler.
// It supports string and null input. Blank string input produces a null String.
// It also supports unmarshalling a sql.NullString.
2014-08-28 17:11:18 +02:00
func (s *String) UnmarshalJSON(data []byte) error {
var err error
var v interface{}
json.Unmarshal(data, &v)
2014-08-30 16:53:25 +02:00
switch x := v.(type) {
2014-08-28 17:11:18 +02:00
case string:
2014-08-30 16:53:25 +02:00
s.String = x
2014-08-28 17:11:18 +02:00
case map[string]interface{}:
err = json.Unmarshal(data, &s.NullString)
case nil:
s.Valid = false
return nil
default:
err = fmt.Errorf("json: cannot unmarshal %v into Go value of type null.String", reflect.TypeOf(v).Name())
2014-08-28 17:11:18 +02:00
}
2014-08-29 03:29:17 +02:00
s.Valid = (err == nil) && (s.String != "")
2014-08-28 17:11:18 +02:00
return err
}
// MarshalJSON implements json.Marshaler.
// It will encode null if this String is null.
func (s String) MarshalJSON() ([]byte, error) {
2014-08-29 03:29:17 +02:00
if !s.Valid {
return []byte("null"), nil
2014-08-29 03:29:17 +02:00
}
return json.Marshal(s.String)
2014-08-29 03:29:17 +02:00
}
// UnmarshalText implements encoding.TextUnmarshaler.
// It will unmarshal to a null String if the input is a blank string.
func (s *String) UnmarshalText(text []byte) error {
s.String = string(text)
s.Valid = s.String != ""
return nil
2014-08-28 17:11:18 +02:00
}
// SetValid changes this String's value and also sets it to be non-null.
func (s *String) SetValid(v string) {
s.String = v
s.Valid = true
}
2014-08-31 10:58:34 +02:00
// Ptr returns a pointer to this String's value, or a nil pointer if this String is null.
2014-08-31 10:28:34 +02:00
func (s String) Ptr() *string {
2014-08-30 16:53:25 +02:00
if !s.Valid {
2014-08-28 17:11:18 +02:00
return nil
}
return &s.String
}
2014-08-29 04:12:48 +02:00
// IsZero returns true for null or empty strings, for future omitempty support. (Go 1.4?)
// Will return false s if blank but non-null.
func (s String) IsZero() bool {
return !s.Valid
}