Documentation ¶
Overview ¶
Package param deserializes parameter values into a given struct using magical reflection ponies. Inspired by gorilla/schema, but uses Rails/jQuery style param encoding instead of their weird dotted syntax. In particular, this package was written with the intent of parsing the output of jQuery.param.
This package uses struct tags to guess what names things ought to have. If a struct value has a "param" tag defined, it will use that. If there is no "param" tag defined, the name part of the "json" tag will be used. If that is not defined, the name of the field itself will be used (no case transformation is performed).
If the name derived in this way is the string "-", param will refuse to set that value.
The parser is extremely strict, and will return an error if it has any difficulty whatsoever in parsing any parameter, or if there is any kind of type mismatch.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type KeyError ¶
type KeyError struct { // The full key that was in error. FullKey string // The key of the struct that did not have the given field. Key string // The type of the struct that did not have the given field. Type reflect.Type // The name of the field which was not present. Field string }
KeyError is an error type returned when an unknown field is set on a struct.
type NestingError ¶
type NestingError struct { // The portion of the key that was correctly parsed into a value. Key string // The type of the key that was invalidly nested on. Type reflect.Type // The portion of the key that could not be parsed due to invalid // nesting. Nesting string }
NestingError is an error type returned when a key is nested when the target type does not support nesting of the given type. For example, deserializing the parameter key "anint[foo]" into a struct that defines an integer param "anint" will produce a NestingError with key "anint" and nesting "[foo]".
func (NestingError) Error ¶
func (n NestingError) Error() string
type SingletonError ¶
type SingletonError struct { // The key that was in error. Key string // The type that was expected for that key. Type reflect.Type // The list of values that were provided for that key. Values []string }
SingletonError is an error type returned when a parameter is passed multiple times when only a single value is expected. For example, for a struct with integer field "foo", "foo=1&foo=2" will return a SingletonError with key "foo".
func (SingletonError) Error ¶
func (s SingletonError) Error() string
type SyntaxError ¶
type SyntaxError struct { // The key for which there was a syntax error. Key string // The subtype of the syntax error, which describes what sort of error // was encountered. Subtype SyntaxErrorSubtype // The part of the key (generally the suffix) that was in error. ErrorPart string }
SyntaxError is an error type returned when a key is incorrectly formatted.
func (SyntaxError) Error ¶
func (s SyntaxError) Error() string
type SyntaxErrorSubtype ¶
type SyntaxErrorSubtype int
SyntaxErrorSubtype describes what sort of syntax error was encountered.
const ( MissingOpeningBracket SyntaxErrorSubtype = iota + 1 MissingClosingBracket )
type TypeError ¶
type TypeError struct { // The key that was in error. Key string // The type that was expected. Type reflect.Type // The underlying error produced as part of the deserialization process, // if one exists. Err error }
TypeError is an error type returned when param has difficulty deserializing a parameter value.
Notes ¶
Bugs ¶
We currently do not handle slices of nested types. If support is needed, the implementation probably could be fleshed out.
We don't support any map keys except strings, although there's no reason we shouldn't be able to throw the value through our unparsing stack.