Documentation ¶
Index ¶
- Constants
- Variables
- func IsBuiltIn(name string) bool
- func LoadSwaggerText(args OutputData, oas2spec string, logger *logrus.Logger) (out string, err error)
- type Alias
- type Array
- type Endpoint
- type Enum
- type ExternalAlias
- type Field
- type FieldList
- type Format
- type Func
- type ImportedBuiltInAlias
- type Importer
- type IndentWriter
- type MethodEndpoints
- type OpenAPI2Importer
- type OpenAPI3Importer
- type OutputData
- type Param
- type Parameters
- type Response
- type StandardType
- type SyslBuiltIn
- type SyslInfo
- type Type
- type TypeList
- type Union
- type XSDImporter
Constants ¶
const ( StringTypeName = "string" ObjectTypeName = "object" ArrayTypeName = "array" )
const ( MinOnly maxType = iota MaxSpecified OpenEnded )
const BlankLine = "&& !!"
const CommentLineLength = 80
const PopIndent = "&& <<"
const PushIndent = "&& >>"
Variables ¶
var Grammar = Format{ Name: "grammar", Signature: "", FileExt: []string{".g"}, }
var OpenAPI3 = Format{ Name: "openapi3", Signature: `openapi:`, FileExt: []string{".yaml", ".json", ".yml"}, }
OpenAPI3 is identified by the openapi header. - The value MUST be "3.x.x". For more details refer to https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#oasDocument
var SYSL = Format{ Name: "sysl", Signature: "", FileExt: []string{".sysl"}, }
var StringAlias = &SyslBuiltIn{name: StringTypeName}
var Swagger = Format{ Name: "swagger", Signature: `swagger:`, FileExt: []string{".yaml", ".json", ".yml"}, }
Swagger only has 2.0.0 as the single valid format - The value MUST be "2.0". For more details refer to https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#swaggerObject
var XSD = Format{ Name: "xsd", Signature: ``, FileExt: []string{".xsd", ".xml"}, }
Functions ¶
func LoadSwaggerText ¶
Types ¶
type Alias ¶
type Alias struct { Target Type // contains filtered or unexported fields }
!alias type without the EXTERNAL_ prefix
type Endpoint ¶
type Endpoint struct { Path string Description string Params Parameters Responses []Response }
type ExternalAlias ¶
type ExternalAlias struct { Target Type // contains filtered or unexported fields }
func (*ExternalAlias) Name ¶
func (s *ExternalAlias) Name() string
type Format ¶ added in v0.124.0
type Format struct { Name string // Name of the format Signature string // This is a string which can be used to uniquely identify the format FileExt []string // The file extension of the format }
Format represents a format that can be imported into Sysl
func GuessFileType ¶ added in v0.124.0
GuessFileType detects the file based on the extension and the file itself. It returns the detected format if successful, or an error, if it has failed. It first tries to match the file extensions before checking the files for signatures such as swagger: "2.0"
type ImportedBuiltInAlias ¶
type ImportedBuiltInAlias struct { Target Type // contains filtered or unexported fields }
func (*ImportedBuiltInAlias) Name ¶
func (s *ImportedBuiltInAlias) Name() string
type Importer ¶ added in v0.124.0
type Importer interface { // Load takes in a string in a format supported by an the importer // It returns the converted Sysl as a string Load(file string) (string, error) // WithAppName allows the exported Sysl application name to be specified WithAppName(appName string) Importer // WithPackage allows the exported Sysl package attribute to be specified WithPackage(packageName string) Importer }
Importer is an interface implemented by all sysl importers
type IndentWriter ¶
func NewIndentWriter ¶
func NewIndentWriter(text string, out io.Writer) *IndentWriter
func (*IndentWriter) CurrentIndentLen ¶
func (i *IndentWriter) CurrentIndentLen() int
func (*IndentWriter) Pop ¶
func (i *IndentWriter) Pop()
func (*IndentWriter) Push ¶
func (i *IndentWriter) Push()
func (*IndentWriter) Write ¶
func (i *IndentWriter) Write() error
type MethodEndpoints ¶
type OpenAPI2Importer ¶ added in v0.124.0
type OpenAPI2Importer struct { *OpenAPI3Importer // contains filtered or unexported fields }
func MakeOpenAPI2Importer ¶ added in v0.124.0
func MakeOpenAPI2Importer(logger *logrus.Logger, basePath string, filePath string) *OpenAPI2Importer
func (*OpenAPI2Importer) Load ¶ added in v0.124.0
func (l *OpenAPI2Importer) Load(oas2spec string) (string, error)
func (*OpenAPI2Importer) WithAppName ¶ added in v0.124.0
func (l *OpenAPI2Importer) WithAppName(appName string) Importer
Set the AppName of the imported app
func (*OpenAPI2Importer) WithPackage ¶ added in v0.124.0
func (l *OpenAPI2Importer) WithPackage(pkg string) Importer
Set the package attribute of the imported app
type OpenAPI3Importer ¶ added in v0.124.0
type OpenAPI3Importer struct {
// contains filtered or unexported fields
}
func MakeOpenAPI3Importer ¶ added in v0.124.0
func MakeOpenAPI3Importer(logger *logrus.Logger, basePath string, filePath string) *OpenAPI3Importer
func (*OpenAPI3Importer) Load ¶ added in v0.124.0
func (l *OpenAPI3Importer) Load(input string) (string, error)
func (*OpenAPI3Importer) Parse ¶ added in v0.124.0
func (l *OpenAPI3Importer) Parse() (string, error)
func (*OpenAPI3Importer) WithAppName ¶ added in v0.124.0
func (l *OpenAPI3Importer) WithAppName(appName string) Importer
Set the AppName of the imported app
func (*OpenAPI3Importer) WithPackage ¶ added in v0.124.0
func (l *OpenAPI3Importer) WithPackage(pkg string) Importer
Set the package attribute of the imported app
type OutputData ¶
type Parameters ¶
type Parameters struct {
// contains filtered or unexported fields
}
func (*Parameters) Add ¶
func (p *Parameters) Add(param Param)
func (Parameters) BodyParams ¶
func (p Parameters) BodyParams() []Param
func (*Parameters) Extend ¶ added in v0.5.0
func (p *Parameters) Extend(others Parameters) Parameters
func (Parameters) HeaderParams ¶
func (p Parameters) HeaderParams() []Param
func (Parameters) PathParams ¶
func (p Parameters) PathParams() []Param
func (Parameters) QueryParams ¶
func (p Parameters) QueryParams() []Param
type StandardType ¶
type StandardType struct { Properties FieldList Attributes []string // contains filtered or unexported fields }
func (*StandardType) Name ¶
func (s *StandardType) Name() string
type SyslBuiltIn ¶
type SyslBuiltIn struct {
// contains filtered or unexported fields
}
func (*SyslBuiltIn) Name ¶
func (s *SyslBuiltIn) Name() string
type SyslInfo ¶
type SyslInfo struct { OutputData Title string Description string OtherFields []string // Ordered key, val pair }
type XSDImporter ¶ added in v0.124.0
type XSDImporter struct {
// contains filtered or unexported fields
}
func MakeXSDImporter ¶ added in v0.124.0
func MakeXSDImporter(logger *logrus.Logger) *XSDImporter
func (*XSDImporter) Load ¶ added in v0.124.0
func (i *XSDImporter) Load(input string) (string, error)
func (*XSDImporter) WithAppName ¶ added in v0.124.0
func (i *XSDImporter) WithAppName(appName string) Importer
Set the AppName of the imported app
func (*XSDImporter) WithPackage ¶ added in v0.124.0
func (i *XSDImporter) WithPackage(pkg string) Importer
Set the package attribute of the imported app
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package openapi2conv converts an OpenAPI v2 specification to v3.
|
Package openapi2conv converts an OpenAPI v2 specification to v3. |