Documentation ¶
Index ¶
- func PrintGoValue(val interface{}) string
- type Content
- type ContentType
- type Default
- type EnumVariant
- type Field
- type GenericVariant
- type JSON
- type JSONFields
- type Kind
- type NilSemantic
- type Operation
- func (op *Operation) CookieParams() []*Parameter
- func (op Operation) GoDoc() []string
- func (op Operation) HasQueryParams() bool
- func (op *Operation) HeaderParams() []*Parameter
- func (op *Operation) ListResponseTypes() []ResponseInfo
- func (op Operation) PathParamIndex(name string) int
- func (op *Operation) PathParams() []*Parameter
- func (op Operation) PathParamsCount() (r int)
- func (op *Operation) QueryParams() []*Parameter
- type Parameter
- type PathPart
- type PrimitiveType
- type Request
- type Response
- type ResponseInfo
- type Security
- type SecurityFormat
- type SecurityKind
- type SecurityRequirement
- type StatusResponse
- type SumJSON
- type SumJSONType
- type SumSpec
- type SumSpecMap
- type Tag
- type Type
- func Alias(name string, to *Type) *Type
- func Any() *Type
- func Array(item *Type, sem NilSemantic, schema *jsonschema.Schema) *Type
- func Generic(name string, of *Type, v GenericVariant) *Type
- func Interface(name string) *Type
- func Pointer(to *Type, sem NilSemantic) *Type
- func Primitive(typ PrimitiveType, schema *jsonschema.Schema) *Type
- func Stream(name string) *Type
- func (t *Type) AddFeature(feature string)
- func (t *Type) AddMethod(name string)
- func (t *Type) AdditionalPropsField() string
- func (t Type) CanGeneric() bool
- func (t *Type) CanHaveMethods() bool
- func (t *Type) CloneFeatures() []string
- func (t Type) Default() Default
- func (t Type) DefaultFields() (r []*Field)
- func (t *Type) EncodeFn() string
- func (t *Type) Equal(target *Type) bool
- func (t *Type) Examples() (r []string)
- func (t Type) FakeFields() (r []*Field)
- func (t *Type) FakeValue() string
- func (t *Type) Format() bool
- func (t Type) FromString() string
- func (t *Type) Go() string
- func (t Type) GoDoc() []string
- func (t Type) HasDefaultFields() bool
- func (t *Type) HasFeature(feature string) bool
- func (t *Type) Implement(i *Type)
- func (t *Type) Is(vs ...Kind) bool
- func (t *Type) IsAlias() bool
- func (t *Type) IsAny() bool
- func (t *Type) IsArray() bool
- func (t *Type) IsEnum() bool
- func (t *Type) IsFloat() bool
- func (t *Type) IsGeneric() bool
- func (t *Type) IsInteger() bool
- func (t *Type) IsInterface() bool
- func (t *Type) IsMap() bool
- func (t *Type) IsNumeric() bool
- func (t *Type) IsPointer() bool
- func (t *Type) IsPrimitive() bool
- func (t *Type) IsStream() bool
- func (t *Type) IsStruct() bool
- func (t *Type) IsSum() bool
- func (t *Type) JSON() JSON
- func (t *Type) ListImplementations() []*Type
- func (t *Type) Methods() []string
- func (t *Type) MustField(name string) *Field
- func (t *Type) NamePostfix() string
- func (t *Type) NeedValidation() bool
- func (t *Type) Pointer(sem NilSemantic) *Type
- func (t *Type) ReceiverType() string
- func (t *Type) RecursiveTo(target *Type) bool
- func (t *Type) SetFieldType(name string, newT *Type)
- func (t Type) String() string
- func (t Type) ToString() string
- func (t *Type) Unimplement(i *Type)
- type Validators
- func (v *Validators) SetArray(schema *jsonschema.Schema)
- func (v *Validators) SetFloat(schema *jsonschema.Schema) error
- func (v *Validators) SetInt(schema *jsonschema.Schema) error
- func (v *Validators) SetObject(schema *jsonschema.Schema)
- func (v *Validators) SetString(schema *jsonschema.Schema) (err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PrintGoValue ¶ added in v0.15.0
func PrintGoValue(val interface{}) string
PrintGoValue prints given value as Go value.
Types ¶
type Content ¶
type Content struct { ContentType ContentType Type *Type }
type ContentType ¶
type ContentType string
ContentType of body.
const ( // ContentTypeJSON is ContentType for json. ContentTypeJSON ContentType = "application/json" // ContentTypeOctetStream is ContentType for binary. ContentTypeOctetStream ContentType = "application/octet-stream" )
func (ContentType) EncodedDataTypeGo ¶
func (t ContentType) EncodedDataTypeGo() string
func (ContentType) JSON ¶
func (t ContentType) JSON() bool
func (ContentType) Name ¶
func (t ContentType) Name() string
func (ContentType) OctetStream ¶
func (t ContentType) OctetStream() bool
func (ContentType) String ¶ added in v0.15.0
func (t ContentType) String() string
type Default ¶ added in v0.15.0
type Default struct { Value interface{} Set bool }
Default represents default value.
type EnumVariant ¶
type EnumVariant struct { Name string Value interface{} }
func (*EnumVariant) ValueGo ¶
func (v *EnumVariant) ValueGo() string
type Field ¶
type Field struct { Name string Type *Type Tag Tag Spec *jsonschema.Property }
Field of structure.
func (Field) ValidationName ¶ added in v0.16.0
ValidationName returns name for FieldError.
type GenericVariant ¶
func (GenericVariant) Any ¶
func (v GenericVariant) Any() bool
func (GenericVariant) Name ¶
func (v GenericVariant) Name() string
func (GenericVariant) NullableOptional ¶
func (v GenericVariant) NullableOptional() bool
func (GenericVariant) OnlyNullable ¶
func (v GenericVariant) OnlyNullable() bool
func (GenericVariant) OnlyOptional ¶
func (v GenericVariant) OnlyOptional() bool
type JSON ¶
type JSON struct {
// contains filtered or unexported fields
}
JSON specifies json encoding and decoding for Type.
func (JSON) Fields ¶
func (j JSON) Fields() (fields JSONFields)
Fields return all fields of Type that should be encoded via json.
func (JSON) Fn ¶
Fn returns jx.Encoder or jx.Decoder method name.
If blank, value cannot be encoded with single method call.
func (JSON) Format ¶
Format returns format name for handling json encoding or decoding.
Mostly used for encoding or decoding of string formats, like `json.EncodeUUID`, where UUID is Format.
type JSONFields ¶ added in v0.7.0
type JSONFields []*Field
func (JSONFields) FirstRequiredIndex ¶ added in v0.7.0
func (j JSONFields) FirstRequiredIndex() int
FirstRequiredIndex returns first required field index.
Or -1 if there is no required fields.
func (JSONFields) HasRequired ¶ added in v0.8.0
func (j JSONFields) HasRequired() bool
HasRequired whether object has required fields
func (JSONFields) NotEmpty ¶ added in v0.9.0
func (j JSONFields) NotEmpty() bool
NotEmpty whether field slice is not empty.
func (JSONFields) RequiredMask ¶ added in v0.8.0
func (j JSONFields) RequiredMask() (r []uint8)
RequiredMask returns array of 64-bit bitmasks for required fields.
type Kind ¶
type Kind string
const ( KindPrimitive Kind = "primitive" KindArray Kind = "array" KindMap Kind = "map" KindAlias Kind = "alias" KindEnum Kind = "enum" KindStruct Kind = "struct" KindPointer Kind = "pointer" KindInterface Kind = "interface" KindGeneric Kind = "generic" KindSum Kind = "sum" KindAny Kind = "any" KindStream Kind = "stream" )
type NilSemantic ¶
type NilSemantic string
NilSemantic specifies nil value semantics.
const ( NilInvalid NilSemantic = "invalid" // nil is invalid NilOptional NilSemantic = "optional" // nil is "no value" NilNull NilSemantic = "null" // nil is null )
Possible nil value semantics.
func (NilSemantic) Invalid ¶
func (n NilSemantic) Invalid() bool
func (NilSemantic) Null ¶
func (n NilSemantic) Null() bool
func (NilSemantic) Optional ¶
func (n NilSemantic) Optional() bool
type Operation ¶
type Operation struct { Name string Description string PathParts []*PathPart Params []*Parameter Request *Request Response *Response Security []*SecurityRequirement Spec *oas.Operation }
func (*Operation) CookieParams ¶
func (Operation) HasQueryParams ¶ added in v0.7.0
func (*Operation) HeaderParams ¶
func (*Operation) ListResponseTypes ¶
func (op *Operation) ListResponseTypes() []ResponseInfo
func (Operation) PathParamIndex ¶ added in v0.8.0
func (*Operation) PathParams ¶
func (Operation) PathParamsCount ¶ added in v0.8.0
func (*Operation) QueryParams ¶
type Parameter ¶
type PrimitiveType ¶
type PrimitiveType int
const ( None PrimitiveType = iota String ByteSlice Int Int8 Int16 Int32 Int64 Uint Uint8 Uint16 Uint32 Uint64 Float32 Float64 Time Duration UUID IP URL Bool )
func (PrimitiveType) IsString ¶ added in v0.7.0
func (p PrimitiveType) IsString() bool
IsString whether this type is string.
func (PrimitiveType) String ¶
func (p PrimitiveType) String() string
type Request ¶
type Request struct { Type *Type Contents map[ContentType]*Type Spec *oas.RequestBody }
type Response ¶
type Response struct { Type *Type StatusCode map[int]*StatusResponse Default *StatusResponse }
type ResponseInfo ¶
type Security ¶ added in v0.19.0
type Security struct { Kind SecurityKind Format SecurityFormat ParameterName string Description string Type *Type }
type SecurityFormat ¶ added in v0.19.0
type SecurityFormat string
SecurityFormat defines security parameter format.
const ( // APIKeySecurityFormat is plain value format. APIKeySecurityFormat SecurityFormat = "apiKey" // BearerSecurityFormat is Bearer authentication (RFC 6750) format. // // Unsupported yet. BearerSecurityFormat SecurityFormat = "bearer" // BasicHTTPSecurityFormat is Basic HTTP authentication (RFC 7617) format. BasicHTTPSecurityFormat SecurityFormat = "basic" // DigestHTTPSecurityFormat is Digest HTTP authentication (RFC 7616) format. // // Unsupported yet. DigestHTTPSecurityFormat SecurityFormat = "digest" )
func (SecurityFormat) IsAPIKeySecurity ¶ added in v0.19.0
func (s SecurityFormat) IsAPIKeySecurity() bool
IsAPIKeySecurity whether s is APIKeySecurityFormat.
func (SecurityFormat) IsBasicHTTPSecurity ¶ added in v0.19.0
func (s SecurityFormat) IsBasicHTTPSecurity() bool
IsBasicHTTPSecurity whether s is BasicHTTPSecurityFormat.
func (SecurityFormat) IsBearerSecurity ¶ added in v0.19.0
func (s SecurityFormat) IsBearerSecurity() bool
IsBearerSecurity whether s is BearerSecurityFormat.
func (SecurityFormat) IsDigestHTTPSecurity ¶ added in v0.19.0
func (s SecurityFormat) IsDigestHTTPSecurity() bool
IsDigestHTTPSecurity whether s is DigestHTTPSecurityFormat.
type SecurityKind ¶ added in v0.19.0
type SecurityKind string
SecurityKind defines security kind.
const ( // QuerySecurity is URL query security parameter. Matches "apiKey" type with "in" = "query". QuerySecurity SecurityKind = "query" // HeaderSecurity is HTTP header security parameter. Matches some "http" schemes and "apiKey" with "in" = "header". HeaderSecurity SecurityKind = "header" // OAuth2Security is special type for OAuth2-based authentication. Matches "oauth2" and "openIdConnect". OAuth2Security SecurityKind = "oauth2" )
func (SecurityKind) IsHeader ¶ added in v0.19.0
func (s SecurityKind) IsHeader() bool
IsHeader whether s is HeaderSecurity.
func (SecurityKind) IsOAuth2 ¶ added in v0.19.0
func (s SecurityKind) IsOAuth2() bool
IsOAuth2 whether s is OAuth2Security.
func (SecurityKind) IsQuery ¶ added in v0.19.0
func (s SecurityKind) IsQuery() bool
IsQuery whether s is QuerySecurity.
type SecurityRequirement ¶ added in v0.19.0
type SecurityRequirement struct { Security *Security Spec oas.SecurityRequirements }
type StatusResponse ¶
type StatusResponse struct { Wrapped bool NoContent *Type Contents map[ContentType]*Type Spec *oas.Response }
func (StatusResponse) ResponseInfo ¶
func (s StatusResponse) ResponseInfo() []ResponseInfo
type SumJSON ¶
type SumJSON struct {
Type SumJSONType
}
SumJSON specifies rules for parsing sum types in json.
func (SumJSON) Discriminator ¶
func (SumJSON) TypeDiscriminator ¶
type SumJSONType ¶
type SumJSONType byte
const ( SumJSONPrimitive SumJSONType = iota SumJSONFields SumJSONDiscriminator SumJSONTypeDiscriminator )
type SumSpec ¶
type SumSpec struct { Unique []*Field // DefaultMapping is name of default mapping. // // Used for variant which has no unique fields. DefaultMapping string // Discriminator is field name of sum type discriminator. Discriminator string // Mapping is discriminator value -> variant mapping. Mapping []SumSpecMap // TypeDiscriminator denotes to distinguish variants by type. TypeDiscriminator bool }
SumSpec for KindSum.
type SumSpecMap ¶
type Tag ¶
type Tag struct {
JSON string // json tag, empty for none
}
Tag of Field.
func (Tag) EscapedJSON ¶ added in v0.7.0
EscapedJSON returns quoted and escaped JSON tag.
type Type ¶
type Type struct { Doc string // ogen documentation Kind Kind // kind Name string // only for struct, alias, interface, enum Primitive PrimitiveType // only for primitive, enum AliasTo *Type // only for alias PointerTo *Type // only for pointer SumOf []*Type // only for sum SumSpec SumSpec // only for sum Item *Type // only for array, map EnumVariants []*EnumVariant // only for enum Fields []*Field // only for struct Implements map[*Type]struct{} // only for struct, alias, enum Implementations map[*Type]struct{} // only for interface InterfaceMethods map[string]struct{} // only for interface Schema *jsonschema.Schema // for all kinds except pointer, interface. Can be nil. NilSemantic NilSemantic // only for pointer GenericOf *Type // only for generic GenericVariant GenericVariant // only for generic Validators Validators // Features contains a set of features the type must implement. // Available features: 'json', 'uri'. // // If some of these features are set, generator // generates additional encoding methods if needed. Features []string }
func Array ¶
func Array(item *Type, sem NilSemantic, schema *jsonschema.Schema) *Type
func Pointer ¶
func Pointer(to *Type, sem NilSemantic) *Type
func Primitive ¶
func Primitive(typ PrimitiveType, schema *jsonschema.Schema) *Type
func (*Type) AddFeature ¶ added in v0.10.0
func (*Type) AdditionalPropsField ¶ added in v0.9.0
AdditionalPropsField returns name of additional properties field.
func (Type) CanGeneric ¶
CanGeneric reports whether Type can be boxed to KindGeneric.
func (*Type) CanHaveMethods ¶ added in v0.15.0
func (*Type) CloneFeatures ¶ added in v0.10.0
func (Type) DefaultFields ¶ added in v0.15.0
DefaultFields returns fields with default values.
func (Type) FakeFields ¶ added in v0.19.0
func (*Type) Format ¶
Format denotes whether custom formatting for Type is required while encoding or decoding.
TODO(ernado): can we use t.JSON here?
func (Type) FromString ¶
func (Type) HasDefaultFields ¶ added in v0.15.0
HasDefaultFields whether type has fields with default values.
func (*Type) HasFeature ¶ added in v0.10.0
func (*Type) IsInterface ¶
func (*Type) IsPrimitive ¶
func (*Type) ListImplementations ¶
func (*Type) NamePostfix ¶ added in v0.15.0
NamePostfix returns name postfix for optional wrapper.
func (*Type) NeedValidation ¶
func (*Type) Pointer ¶
func (t *Type) Pointer(sem NilSemantic) *Type
func (*Type) ReceiverType ¶ added in v0.7.0
func (*Type) RecursiveTo ¶
func (*Type) SetFieldType ¶ added in v0.15.0
func (*Type) Unimplement ¶
type Validators ¶
type Validators struct { String validate.String Int validate.Int Float validate.Float Array validate.Array Object validate.Object }
func (*Validators) SetArray ¶ added in v0.12.0
func (v *Validators) SetArray(schema *jsonschema.Schema)
func (*Validators) SetFloat ¶ added in v0.16.0
func (v *Validators) SetFloat(schema *jsonschema.Schema) error
func (*Validators) SetInt ¶ added in v0.12.0
func (v *Validators) SetInt(schema *jsonschema.Schema) error
func (*Validators) SetObject ¶ added in v0.12.0
func (v *Validators) SetObject(schema *jsonschema.Schema)
func (*Validators) SetString ¶ added in v0.12.0
func (v *Validators) SetString(schema *jsonschema.Schema) (err error)