go-nul/nullable_marshaljson.go

40 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package nul
import (
"encoding"
"fmt"
"reflect"
"github.com/reiver/go-erorr"
"github.com/reiver/go-json"
)
var _ json.Marshaler = Nothing[bool]()
var _ json.Marshaler = Nothing[string]()
// MarshalJSON makes it so json.Marshaler is implemented.
func (receiver Nullable[T]) MarshalJSON() ([]byte, error) {
switch interface{}(receiver.value).(type) {
case json.Marshaler, encoding.TextMarshaler, bool, int, int8, int16, int32, int64, string, uint, uint8, uint16, uint32, uint64:
// these are OK.
default:
var reflectedType reflect.Type = reflect.TypeOf(receiver.value)
if nil == reflectedType {
return nil, errBadReflection
}
if reflect.Struct != reflectedType.Kind() {
return nil, erorr.Errorf("nul: cannot marshal something of type %T into JSON because parameterized type is %T is not supported", receiver, receiver.value)
}
}
if receiver.isnothing() {
return nil, json.ErrEmpty(fmt.Sprintf("nul: cannot marshal nul.Nothing[%T]() into JSON", receiver.value))
}
if receiver.isnull {
return json.Marshal(nil)
}
return json.Marshal(receiver.value)
}