golang

package
v1.80.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 23, 2025 License: MIT Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func EnumReplace

func EnumReplace(value string) string

EnumReplace removes all non ident symbols (all but letters, numbers and underscore) and returns valid ident name for provided name.

func EnumValueName

func EnumValueName(value string) string

EnumValueName removes all non ident symbols (all but letters, numbers and underscore) and converts snake case ident to camel case.

func IsReserved

func IsReserved(s string) bool

func JSONTagName

func JSONTagName(name string, options *opts.Options) string

func SetCaseStyle

func SetCaseStyle(name string, style string) string

func SetJSONCaseStyle

func SetJSONCaseStyle(name string, style string, idUppercase bool) string

func StructName

func StructName(name string, options *opts.Options) string

func TagsToString

func TagsToString(tags map[string]string) string

Types

type Argument

type Argument struct {
	Name string
	Type string
}

type CompositeType

type CompositeType struct {
	InDefaultSchema bool
	Schema          string
	TypeName        string
	GoTypeName      string
	Attributes      []Field
	Comment         string
}

type Constant

type Constant struct {
	Name  string
	Type  string
	Value string
}

type Enum

type Enum struct {
	Name      string
	Comment   string
	Constants []Constant
	NameTags  map[string]string
	ValidTags map[string]string
}

func (Enum) NameTag

func (e Enum) NameTag() string

func (Enum) ValidTag

func (e Enum) ValidTag() string

type Field

type Field struct {
	Name    string // CamelCased name for Go
	DBName  string // Name as used in the DB
	Type    string
	Tags    map[string]string
	Comment string
	Column  *plugin.Column
	// EmbedFields contains the embedded fields that require scanning.
	EmbedFields []Field
}

func (Field) HasSqlcSlice

func (gf Field) HasSqlcSlice() bool

func (Field) Tag

func (gf Field) Tag() string

type GenContext

type GenContext struct {
	// contains filtered or unexported fields
}

func (*GenContext) ApplyOptions

func (gtx *GenContext) ApplyOptions(opts *opts.Options)

func (*GenContext) ApplyRenames added in v1.80.6

func (gtx *GenContext) ApplyRenames() *GenContext

func (*GenContext) DeduplicateQueryRetStructs

func (gtx *GenContext) DeduplicateQueryRetStructs() *GenContext

func (*GenContext) DeduplicateStructs

func (gtx *GenContext) DeduplicateStructs() *GenContext

func (*GenContext) FilterUnusedStructs

func (gtx *GenContext) FilterUnusedStructs() *GenContext

func (*GenContext) SplitByPackages

func (gtx *GenContext) SplitByPackages(options map[string]*opts.PackageOptions) map[PackagePathKey]*GenContext

func (*GenContext) Validate

func (gtx *GenContext) Validate(options *opts.Options) error

type ImportSpec

type ImportSpec struct {
	ID   string
	Path string
}

func (ImportSpec) String

func (s ImportSpec) String() string

type PackagePathKey

type PackagePathKey string
const RootPackagePathKey PackagePathKey = ""

func (PackagePathKey) GoPackage

func (k PackagePathKey) GoPackage() string

func (PackagePathKey) Packages

func (k PackagePathKey) Packages() []string

func (PackagePathKey) String

func (k PackagePathKey) String() string

type PackageTpl added in v1.80.2

type PackageTpl struct {
	GoPackage            string
	OverridedQuerierName *string
}

func (*PackageTpl) MethodName added in v1.80.2

func (p *PackageTpl) MethodName() string

type Query

type Query struct {
	Cmd          string
	Comments     []string
	MethodName   string
	FieldName    string
	ConstantName string
	SQL          string
	SourceName   string
	PackagePath  []string
	Ret          QueryValue
	Arg          QueryValue
	// Used for :copyfrom
	Table      *plugin.Identifier
	ReturnName *string
}

A struct used to generate methods and fields on the Queries struct

func (Query) RetTplName

func (q Query) RetTplName() string

func (Query) TableIdentifierAsGoSlice

func (q Query) TableIdentifierAsGoSlice() string

func (Query) TableIdentifierForMySQL

func (q Query) TableIdentifierForMySQL() string

type QueryValue

type QueryValue struct {
	Emit        bool
	EmitPointer bool
	Name        string
	DBName      string // The name of the field in the database. Only set if Struct==nil.
	Struct      *Struct
	Typ         string
	SQLDriver   opts.SQLDriver

	// Column is kept so late in the generation process around to differentiate
	// between mysql slices and pg arrays
	Column *plugin.Column
}

func (QueryValue) ColumnNames

func (v QueryValue) ColumnNames() []string

func (QueryValue) ColumnNamesAsGoSlice

func (v QueryValue) ColumnNamesAsGoSlice() string

func (QueryValue) CopyFromMySQLFields deprecated

func (v QueryValue) CopyFromMySQLFields() []Field

Deprecated: This method does not respect the Emit field set on the QueryValue. It's used by the go-sql-driver-mysql/copyfromCopy.tmpl and should not be used other places.

func (*QueryValue) DefineType

func (v *QueryValue) DefineType() string

func (QueryValue) EmitStruct

func (v QueryValue) EmitStruct() bool

func (QueryValue) HasSqlcSlices

func (v QueryValue) HasSqlcSlices() bool

When true, we have to build the arguments to q.db.QueryContext in addition to munging the SQL

func (QueryValue) IsPointer

func (v QueryValue) IsPointer() bool

func (QueryValue) IsStruct

func (v QueryValue) IsStruct() bool

func (QueryValue) Pair

func (v QueryValue) Pair() string

func (QueryValue) Pairs

func (v QueryValue) Pairs() []Argument

Return the argument name and type for query methods. Should only be used in the context of method arguments.

func (QueryValue) Params

func (v QueryValue) Params() string

func (*QueryValue) ReturnName

func (v *QueryValue) ReturnName() string

func (QueryValue) Scan

func (v QueryValue) Scan() string

func (QueryValue) SlicePair

func (v QueryValue) SlicePair() string

func (QueryValue) Type

func (v QueryValue) Type() string

func (QueryValue) UniqueFields

func (v QueryValue) UniqueFields() []Field

func (QueryValue) VariableForField

func (v QueryValue) VariableForField(f Field) string

type Struct

type Struct struct {
	Table   *plugin.Identifier
	Name    string
	Fields  []Field
	Comment string
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL