Documentation ¶
Index ¶
- func NewGenerator(options map[string]string) generator.LanguageGenerator
- type Generator
- func (g *Generator) DefaultOutputDir() string
- func (g *Generator) GenerateConstants(file *os.File, name string) error
- func (g *Generator) GenerateConstantsContents(constants []*parser.Constant) error
- func (g *Generator) GenerateDependencies(dir string) error
- func (g *Generator) GenerateDocStringComment(file *os.File) error
- func (g *Generator) GenerateEnum(enum *parser.Enum) error
- func (g *Generator) GenerateException(exception *parser.Struct) error
- func (g *Generator) GenerateFile(name, outputDir string, fileType generator.FileType) (*os.File, error)
- func (g *Generator) GeneratePublisher(file *os.File, scope *parser.Scope) error
- func (g *Generator) GenerateScopeImports(file *os.File, s *parser.Scope) error
- func (g *Generator) GenerateScopePackage(file *os.File, s *parser.Scope) error
- func (g *Generator) GenerateService(file *os.File, s *parser.Service) error
- func (g *Generator) GenerateServiceImports(file *os.File, s *parser.Service) error
- func (g *Generator) GenerateServicePackage(file *os.File, s *parser.Service) error
- func (g *Generator) GenerateServiceResultArgsImports(file *os.File) error
- func (g *Generator) GenerateStruct(s *parser.Struct) error
- func (g *Generator) GenerateSubscriber(file *os.File, scope *parser.Scope) error
- func (g *Generator) GenerateTypeDef(typedef *parser.TypeDef) error
- func (g *Generator) GenerateTypesImports(file *os.File) error
- func (g *Generator) GenerateUnion(union *parser.Struct) error
- func (g *Generator) GetOutputDir(dir string) string
- func (g *Generator) PostProcess(f *os.File) error
- func (g *Generator) SetupGenerator(outputDir string) error
- func (g *Generator) TeardownGenerator() error
- func (g *Generator) UseVendor() bool
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewGenerator ¶
func NewGenerator(options map[string]string) generator.LanguageGenerator
NewGenerator creates a new Go LanguageGenerator.
Types ¶
type Generator ¶
type Generator struct { *generator.BaseGenerator // contains filtered or unexported fields }
Generator implements the LanguageGenerator interface for Go.
func (*Generator) DefaultOutputDir ¶
DefaultOutputDir returns the default output directory for generated files.
func (*Generator) GenerateConstants ¶
GenerateConstants generates any static constants.
func (*Generator) GenerateConstantsContents ¶
GenerateConstantsContents generates constants.
func (*Generator) GenerateDependencies ¶
GenerateDependencies is a no-op.
func (*Generator) GenerateDocStringComment ¶
GenerateDocStringComment generates the autogenerated notice.
func (*Generator) GenerateEnum ¶
GenerateEnum generates the given enum.
func (*Generator) GenerateException ¶
GenerateException generates the given exception.
func (*Generator) GenerateFile ¶
func (g *Generator) GenerateFile(name, outputDir string, fileType generator.FileType) (*os.File, error)
GenerateFile generates the given FileType.
func (*Generator) GeneratePublisher ¶
GeneratePublisher generates the publisher for the given scope.
func (*Generator) GenerateScopeImports ¶
GenerateScopeImports generates necessary imports for the given scope.
func (*Generator) GenerateScopePackage ¶
GenerateScopePackage generates the package for the given scope.
func (*Generator) GenerateService ¶
GenerateService generates the given service.
func (*Generator) GenerateServiceImports ¶
GenerateServiceImports generates necessary imports for the given service.
func (*Generator) GenerateServicePackage ¶
GenerateServicePackage generates the package for the given service.
func (*Generator) GenerateServiceResultArgsImports ¶
GenerateServiceResultArgsImports generates the necessary imports for service args and result types.
func (*Generator) GenerateStruct ¶
GenerateStruct generates the given struct.
func (*Generator) GenerateSubscriber ¶
GenerateSubscriber generates the subscriber for the given scope.
func (*Generator) GenerateTypeDef ¶
GenerateTypeDef generates the given typedef.
func (*Generator) GenerateTypesImports ¶
GenerateTypesImports generates the necessary Go types imports.
func (*Generator) GenerateUnion ¶
GenerateUnion generates the given union.
func (*Generator) GetOutputDir ¶
GetOutputDir returns the output directory for generated files.
func (*Generator) PostProcess ¶
PostProcess file runs gofmt and goimports on the given file.
func (*Generator) SetupGenerator ¶
SetupGenerator initializes globals the generator needs, like the types file.
func (*Generator) TeardownGenerator ¶
TeardownGenerator cleanups globals the generator needs, like the types file.