package schema
import "git.sr.ht/~sircmpwn/go-bare/schema"
Index ¶
- func SchemaFor(val interface{}) (string, error)
- func SchemaForType(t reflect.Type) (string, error)
- type ArrayType
- func (at *ArrayType) Kind() TypeKind
- func (at *ArrayType) Length() uint
- func (at *ArrayType) Member() Type
- type DataType
- type EnumValue
- type ErrUnexpectedToken
- type ErrUnknownToken
- type MapType
- type NamedUserType
- type OptionalType
- type PrimitiveType
- type Scanner
- func NewScanner(reader io.Reader) *Scanner
- func (sc *Scanner) Next() (Token, error)
- func (sc *Scanner) PushBack(tok Token)
- type SchemaType
- type SchemaTypeKind
- type StructField
- type StructType
- type Token
- type TokenKind
- type Type
- type TypeKind
- type UnionSubtype
- type UnionType
- type UserDefinedEnum
- func (ude *UserDefinedEnum) Kind() TypeKind
- func (ude *UserDefinedEnum) Name() string
- func (ude *UserDefinedEnum) Values() []EnumValue
- type UserDefinedType
Functions ¶
func SchemaFor ¶
Given a pointer to a value, returns the BARE schema language representation for that value type.
var example string schema.SchemaFor(&example); // "string"
Given a struct type, if the "bare" tag is found on its fields, it will be used as the field name in the generated schema.
func SchemaForType ¶
Given a reflect.Type, returns the BARE schema language representation for that type. See SchemaFor for details.
Types ¶
type ArrayType ¶
type ArrayType struct {
// contains filtered or unexported fields
}
func (*ArrayType) Kind ¶
func (*ArrayType) Length ¶
func (*ArrayType) Member ¶
type DataType ¶
type DataType struct {
// contains filtered or unexported fields
}
func (*DataType) Kind ¶
func (*DataType) Length ¶
type EnumValue ¶
type EnumValue struct {
// contains filtered or unexported fields
}
func (*EnumValue) Name ¶
func (*EnumValue) Value ¶
type ErrUnexpectedToken ¶
type ErrUnexpectedToken struct {
// contains filtered or unexported fields
}
Returned when the lexer encounters an unexpected token
func (*ErrUnexpectedToken) Error ¶
func (e *ErrUnexpectedToken) Error() string
type ErrUnknownToken ¶
type ErrUnknownToken struct {
// contains filtered or unexported fields
}
Returned when the lexer encounters an unexpected character
func (*ErrUnknownToken) Error ¶
func (e *ErrUnknownToken) Error() string
type MapType ¶
type MapType struct {
// contains filtered or unexported fields
}
func (*MapType) Key ¶
func (*MapType) Kind ¶
func (*MapType) Value ¶
type NamedUserType ¶
type NamedUserType struct {
// contains filtered or unexported fields
}
This has not been compared with the list of user-defined types and is not guaranteed to actually exist; the consumer of this type must perform this lookup itself.
func (*NamedUserType) Kind ¶
func (nut *NamedUserType) Kind() TypeKind
func (*NamedUserType) Name ¶
func (nut *NamedUserType) Name() string
type OptionalType ¶
type OptionalType struct {
// contains filtered or unexported fields
}
func (*OptionalType) Kind ¶
func (ot *OptionalType) Kind() TypeKind
func (*OptionalType) Subtype ¶
func (ot *OptionalType) Subtype() Type
type PrimitiveType ¶
type PrimitiveType struct {
// contains filtered or unexported fields
}
func (*PrimitiveType) Kind ¶
func (pt *PrimitiveType) Kind() TypeKind
type Scanner ¶
type Scanner struct {
// contains filtered or unexported fields
}
A scanner for reading lexographic tokens from a BARE schema language document.
func NewScanner ¶
Creates a new BARE schema language scanner for the given reader.
func (*Scanner) Next ¶
Returns the next token from the reader. If the token has a string associated with it (e.g. UserTypeName, Name, and Integer), the second return value is set to that string.
func (*Scanner) PushBack ¶
Pushes a token back to the scanner, causing it to be returned on the next call to Next.
type SchemaType ¶
type SchemaType interface { Name() string }
func Parse ¶
func Parse(reader io.Reader) ([]SchemaType, error)
Parses a BARE schema definition language document from the given reader and returns a list of the user-defined types it specifies.
type SchemaTypeKind ¶
type SchemaTypeKind int
type StructField ¶
type StructField struct {
// contains filtered or unexported fields
}
func (*StructField) Name ¶
func (sf *StructField) Name() string
func (*StructField) Type ¶
func (sf *StructField) Type() Type
type StructType ¶
type StructType struct {
// contains filtered or unexported fields
}
func (*StructType) Fields ¶
func (st *StructType) Fields() []StructField
func (*StructType) Kind ¶
func (st *StructType) Kind() TypeKind
type Token ¶
A single lexographic token from a schema language token stream
func (Token) String ¶
type TokenKind ¶
type TokenKind int
const ( TTYPE TokenKind = iota TENUM // NAME is used for name, user-type-name, and enum-value-name. // Distinguishing between these requires context. TNAME TINTEGER TUINT TU8 TU16 TU32 TU64 TINT TI8 TI16 TI32 TI64 TF32 TF64 TBOOL TSTRING TDATA TVOID TMAP TOPTIONAL // < TLANGLE // > TRANGLE // { TLBRACE // } TRBRACE // [ TLBRACKET // ] TRBRACKET // ( TLPAREN // ) TRPAREN // | TPIPE // = TEQUAL // : TCOLON )
type Type ¶
type Type interface { Kind() TypeKind }
type TypeKind ¶
type TypeKind int
const ( UINT TypeKind = iota U8 U16 U32 U64 INT I8 I16 I32 I64 F32 F64 Bool String Void // data Data // data<length> DataFixed // [len]type Array // []type Slice // optional<type> Optional // data<len> DataArray // data DataSlice // map[type]type Map // (type | type | ...) Union // { fields... } Struct // Named user type UserType )
func (TypeKind) String ¶
type UnionSubtype ¶
type UnionSubtype struct {
// contains filtered or unexported fields
}
func (*UnionSubtype) Tag ¶
func (ust *UnionSubtype) Tag() uint64
func (*UnionSubtype) Type ¶
func (ust *UnionSubtype) Type() Type
type UnionType ¶
type UnionType struct {
// contains filtered or unexported fields
}
func (*UnionType) Kind ¶
func (*UnionType) Types ¶
func (ut *UnionType) Types() []UnionSubtype
type UserDefinedEnum ¶
type UserDefinedEnum struct {
// contains filtered or unexported fields
}
func (*UserDefinedEnum) Kind ¶
func (ude *UserDefinedEnum) Kind() TypeKind
func (*UserDefinedEnum) Name ¶
func (ude *UserDefinedEnum) Name() string
func (*UserDefinedEnum) Values ¶
func (ude *UserDefinedEnum) Values() []EnumValue
type UserDefinedType ¶
type UserDefinedType struct {
// contains filtered or unexported fields
}
func (*UserDefinedType) Name ¶
func (udt *UserDefinedType) Name() string
func (*UserDefinedType) Type ¶
func (udt *UserDefinedType) Type() Type
Source Files ¶
ast.go lex.go parser.go unparse.go
- Version
- v0.0.0-20210406120253-ab86bc2846d9 (latest)
- Published
- Apr 6, 2021
- Platform
- linux/amd64
- Imports
- 10 packages
- Last checked
- 1 month ago –
Tools for package owners.