document

package
v1.8.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 27, 2021 License: Apache-2.0 Imports: 4 Imported by: 832

Documentation

Overview

Package document provides interface definitions and error types for document types.

A document is a protocol-agnostic type which supports a JSON-like data-model. You can use this type to send UTF-8 strings, arbitrary precision numbers, booleans, nulls, a list of these values, and a map of UTF-8 strings to these values.

API Clients expose document constructors in their respective client document packages which must be used to Marshal and Unmarshal Go types to and from their respective protocol representations.

See the Marshaler and Unmarshaler type documentation for more details on how to Go types can be converted to and from document types.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsNoSerde

func IsNoSerde(x interface{}) bool

IsNoSerde returns whether the given type implements the no smithy document serde interface.

Types

type InvalidMarshalError

type InvalidMarshalError struct {
	Message string
}

An InvalidMarshalError is an error type representing an error occurring when marshaling a Go value type.

func (*InvalidMarshalError) Error

func (e *InvalidMarshalError) Error() string

Error returns the string representation of the error. satisfying the error interface

type InvalidUnmarshalError

type InvalidUnmarshalError struct {
	Type reflect.Type
}

An InvalidUnmarshalError is an error type representing an invalid type encountered while unmarshalling a Smithy document to a Go value type.

func (*InvalidUnmarshalError) Error

func (e *InvalidUnmarshalError) Error() string

Error returns the string representation of the error. satisfying the error interface

type Marshaler

type Marshaler interface {
	MarshalSmithyDocument() ([]byte, error)
}

Marshaler is an interface for a type that marshals a document to its protocol-specific byte representation and returns the resulting bytes. A non-nil error will be returned if an error is encountered during marshaling.

Marshal supports basic scalars (int,uint,float,bool,string), big.Int, and big.Float, maps, slices, and structs. Anonymous nested types are flattened based on Go anonymous type visibility.

When defining struct types. the `document` struct tag can be used to control how the value will be marshaled into the resulting protocol document.

// Field is ignored
Field int `document:"-"`

// Field object of key "myName"
Field int `document:"myName"`

// Field object key of key "myName", and
// Field is omitted if the field is a zero value for the type.
Field int `document:"myName,omitempty"`

// Field object key of "Field", and
// Field is omitted if the field is a zero value for the type.
Field int `document:",omitempty"`

All struct fields, including anonymous fields, are marshaled unless the any of the following conditions are meet.

  • the field is not exported
  • document field tag is "-"
  • document field tag specifies "omitempty", and is a zero value.

Pointer and interfaces values are encoded as the value pointed to or contained in the interface. A nil value encodes as a null value unless `omitempty` struct tag is provided.

Channel, complex, and function values are not encoded and will be skipped when walking the value to be marshaled.

time.Time is not supported and will cause the Marshaler to return an error. These values should be represented by your application as a string or numerical representation.

Errors that occur when marshaling will stop the marshaller, and return the error.

Marshal cannot represent cyclic data structures and will not handle them. Passing cyclic structures to Marshal will result in an infinite recursion.

type NoSerde

type NoSerde struct{}

NoSerde is a sentinel value to indicate that a given type should not be marshaled or unmarshalled into a protocol document.

type Number

type Number string

Number is a arbitrary precision numerical value

func (Number) BigFloat

func (n Number) BigFloat() (*big.Float, error)

BigFloat attempts to convert the number to a big.Float, returns an error if the operation fails.

func (Number) BigInt

func (n Number) BigInt() (*big.Int, error)

BigInt attempts to convert the number to a big.Int, returns an error if the operation fails.

func (Number) Float32

func (n Number) Float32() (float64, error)

Float32 returns the number parsed as a 32-bit float, returns a float64.

func (Number) Float64

func (n Number) Float64() (float64, error)

Float64 returns the number as a float64.

func (Number) Int64

func (n Number) Int64() (int64, error)

Int64 returns the number as an int64.

func (Number) String

func (n Number) String() string

Int64 returns the number as a string.

func (Number) Uint64

func (n Number) Uint64() (uint64, error)

Uint64 returns the number as an uint64.

type UnmarshalError

type UnmarshalError struct {
	Err   error
	Value string
	Type  reflect.Type
}

An UnmarshalError wraps an error that occurred while unmarshalling a Smithy document into a Go type. This is different from UnmarshalTypeError in that it wraps the underlying error that occurred.

func (*UnmarshalError) Error

func (e *UnmarshalError) Error() string

Error returns the string representation of the error satisfying the error interface.

func (*UnmarshalError) Unwrap

func (e *UnmarshalError) Unwrap() error

Unwrap returns the underlying unmarshalling error

type UnmarshalTypeError

type UnmarshalTypeError struct {
	Value string
	Type  reflect.Type
}

UnmarshalTypeError is an error type representing aa error unmarshalling a Smithy document to a Go value type. This is different from UnmarshalError in that it does not wrap an underlying error type.

func (*UnmarshalTypeError) Error

func (e *UnmarshalTypeError) Error() string

Error returns the string representation of the error. satisfying the error interface

type Unmarshaler

type Unmarshaler interface {
	UnmarshalSmithyDocument(v interface{}) error
}

Unmarshaler is an interface for a type that unmarshalls a document from its protocol-specific representation, and stores the result into the value pointed by v. If v is nil or not a pointer then InvalidUnmarshalError will be returned.

Unmarshaler supports the same encodings produced by a document Marshaler. This includes support for the `document` struct field tag for controlling how struct fields are unmarshalled.

Both generic interface{} and concrete types are valid unmarshal destination types. When unmarshalling a document into an empty interface the Unmarshaler will store one of these values:

bool,                   for boolean values
document.Number,        for arbitrary-precision numbers (int64, float64, big.Int, big.Float)
string,                 for string values
[]interface{},          for array values
map[string]interface{}, for objects
nil,                    for null values

When unmarshalling, any error that occurs will halt the unmarshal and return the error.

Directories

Path Synopsis
internal
Package json provides a document Encoder and Decoder implementation that is used to implement Smithy document types for JSON based protocols.
Package json provides a document Encoder and Decoder implementation that is used to implement Smithy document types for JSON based protocols.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL