parser

package
v5.2.0-beta2+incompatible Latest Latest
Warning

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

Go to latest
Published: Mar 11, 2020 License: LGPL-3.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DetermineDeployType

func DetermineDeployType(imageName Image) string

DetermineDeployType Determine the deployment type if image like db image,return stateful type

func GetPortProtocol

func GetPortProtocol(port int) string

GetPortProtocol 获取端口协议

func ReadRbdConfigAndLang

func ReadRbdConfigAndLang(buildInfo *sources.RepostoryBuildInfo) (*code.RainbondFileConfig, code.Lang, error)

ReadRbdConfigAndLang read rainbondfile and lang

func SolveAdvice

func SolveAdvice(actionType, message string) string

SolveAdvice 构建a标签建议

Types

type DockerComposeParse

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

DockerComposeParse docker compose 文件解析

func (*DockerComposeParse) GetImage

func (d *DockerComposeParse) GetImage() Image

GetImage 获取镜像名

func (*DockerComposeParse) GetServiceInfo

func (d *DockerComposeParse) GetServiceInfo() []ServiceInfo

GetServiceInfo 获取service info

func (*DockerComposeParse) Parse

Parse 解码

type DockerRunOrImageParse

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

DockerRunOrImageParse docker run 命令解析或直接镜像名解析

func CreateDockerRunOrImageParse

func CreateDockerRunOrImageParse(user, pass, source string, dockerclient *client.Client, logger event.Logger) *DockerRunOrImageParse

CreateDockerRunOrImageParse create parser

func (*DockerRunOrImageParse) GetArgs

func (d *DockerRunOrImageParse) GetArgs() []string

GetArgs 启动参数

func (*DockerRunOrImageParse) GetBranchs

func (d *DockerRunOrImageParse) GetBranchs() []string

GetBranchs 获取分支列表

func (*DockerRunOrImageParse) GetEnvs

func (d *DockerRunOrImageParse) GetEnvs() (envs []types.Env)

GetEnvs 环境变量

func (*DockerRunOrImageParse) GetImage

func (d *DockerRunOrImageParse) GetImage() Image

GetImage 获取镜像

func (*DockerRunOrImageParse) GetMemory

func (d *DockerRunOrImageParse) GetMemory() int

GetMemory 获取内存

func (*DockerRunOrImageParse) GetPorts

func (d *DockerRunOrImageParse) GetPorts() (ports []types.Port)

GetPorts 获取端口列表

func (*DockerRunOrImageParse) GetServiceInfo

func (d *DockerRunOrImageParse) GetServiceInfo() []ServiceInfo

GetServiceInfo 获取service info

func (*DockerRunOrImageParse) GetValid

func (d *DockerRunOrImageParse) GetValid() bool

GetValid 获取源是否合法

func (*DockerRunOrImageParse) GetVolumes

func (d *DockerRunOrImageParse) GetVolumes() (volumes []types.Volume)

GetVolumes 获取存储列表

func (*DockerRunOrImageParse) Parse

Parse 解码,获取镜像,解析镜像 eg. docker run -it -p 80:80 nginx

func (*DockerRunOrImageParse) ParseDockerun

func (d *DockerRunOrImageParse) ParseDockerun(source []string)

ParseDockerun parse docker run command

type GetServiceInfo

type GetServiceInfo struct {
	UUID   string `json:"uuid"`
	Source string `json:"source"`
}

GetServiceInfo GetServiceInfo

type Image

type Image struct {
	Name string `json:"name"`
	Tag  string `json:"tag"`
	// contains filtered or unexported fields
}

Image 镜像

func ParseImageName

func ParseImageName(s string) (i Image)

ParseImageName parse image name

func (Image) GetDomain

func (i Image) GetDomain() string

GetDomain get image registry domain

func (Image) GetRepostory

func (i Image) GetRepostory() string

GetRepostory get repostory

func (Image) GetSimpleName

func (i Image) GetSimpleName() string

GetSimpleName get image name without tag and organizations

func (Image) GetTag

func (i Image) GetTag() string

GetTag get tag

func (Image) IsOfficial

func (i Image) IsOfficial() bool

IsOfficial is official image

func (Image) String

func (i Image) String() string

String -

type Lang

type Lang string

Lang 语言类型

type ParseError

type ParseError struct {
	ErrorType   ParseErrorType `json:"error_type"`
	ErrorInfo   string         `json:"error_info"`
	SolveAdvice string         `json:"solve_advice"`
}

ParseError 错误信息

func ErrorAndSolve

func ErrorAndSolve(errtype ParseErrorType, errorInfo, SolveAdvice string) ParseError

ErrorAndSolve error create

func Errorf

func Errorf(errtype ParseErrorType, format string, a ...interface{}) ParseError

Errorf error create

func (ParseError) Error

func (p ParseError) Error() string

type ParseErrorList

type ParseErrorList []ParseError

ParseErrorList 错误列表

func (ParseErrorList) Error

func (ps ParseErrorList) Error() string

func (ParseErrorList) IsFatalError

func (ps ParseErrorList) IsFatalError() bool

IsFatalError 是否具有致命错误

type ParseErrorType

type ParseErrorType string

ParseErrorType 错误类型

var FatalError ParseErrorType = "FatalError"

FatalError 致命错误

var NegligibleError ParseErrorType = "NegligibleError"

NegligibleError 可忽略错误

type Parser

type Parser interface {
	Parse() ParseErrorList
	GetServiceInfo() []ServiceInfo
	GetImage() Image
}

Parser 解析器

func CreateDockerComposeParse

func CreateDockerComposeParse(source string, dockerclient *client.Client, user, pass string, logger event.Logger) Parser

CreateDockerComposeParse create parser

func CreateSourceCodeParse

func CreateSourceCodeParse(source string, logger event.Logger) Parser

CreateSourceCodeParse create parser

func CreateThirdPartyServiceParse

func CreateThirdPartyServiceParse(sourceBody string, logger event.Logger) Parser

CreateThirdPartyServiceParse creates a new ThirdPartyServiceParse.

type ServiceInfo

type ServiceInfo struct {
	ID             string         `json:"id,omitempty"`
	Ports          []types.Port   `json:"ports,omitempty"`
	Envs           []types.Env    `json:"envs,omitempty"`
	Volumes        []types.Volume `json:"volumes,omitempty"`
	Image          Image          `json:"image,omitempty"`
	Args           []string       `json:"args,omitempty"`
	DependServices []string       `json:"depends,omitempty"`
	ServiceType    string         `json:"service_type,omitempty"`
	Branchs        []string       `json:"branchs,omitempty"`
	Memory         int            `json:"memory,omitempty"`
	Lang           code.Lang      `json:"language,omitempty"`
	ImageAlias     string         `json:"image_alias,omitempty"`
	//For third party services
	Endpoints []*discovery.Endpoint `json:"endpoints,omitempty"`
	//os type,default linux
	OS        string `json:"os"`
	Name      string `json:"name,omitempty"`  // module name
	Cname     string `json:"cname,omitempty"` // service cname
	Packaging string `json:"packaging,omitempty"`
}

ServiceInfo 智能获取的应用信息

type ServiceInfoFromDC

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

ServiceInfoFromDC service info from dockercompose

func (*ServiceInfoFromDC) GetEnvs

func (d *ServiceInfoFromDC) GetEnvs() (envs []types.Env)

GetEnvs 环境变量

func (*ServiceInfoFromDC) GetPorts

func (d *ServiceInfoFromDC) GetPorts() (ports []types.Port)

GetPorts 获取端口列表

func (*ServiceInfoFromDC) GetVolumes

func (d *ServiceInfoFromDC) GetVolumes() (volumes []types.Volume)

GetVolumes 获取存储列表

type SourceCodeParse

type SourceCodeParse struct {
	Lang code.Lang

	Runtime      bool `json:"runtime"`
	Dependencies bool `json:"dependencies"`
	Procfile     bool `json:"procfile"`
	// contains filtered or unexported fields
}

SourceCodeParse docker run 命令解析或直接镜像名解析

func (*SourceCodeParse) GetArgs

func (d *SourceCodeParse) GetArgs() []string

GetArgs 启动参数

func (*SourceCodeParse) GetBranchs

func (d *SourceCodeParse) GetBranchs() []string

GetBranchs 获取分支列表

func (*SourceCodeParse) GetEnvs

func (d *SourceCodeParse) GetEnvs() (envs []types.Env)

GetEnvs 环境变量

func (*SourceCodeParse) GetImage

func (d *SourceCodeParse) GetImage() Image

GetImage 获取镜像

func (*SourceCodeParse) GetLang

func (d *SourceCodeParse) GetLang() code.Lang

GetLang 获取识别语言

func (*SourceCodeParse) GetMemory

func (d *SourceCodeParse) GetMemory() int

GetMemory 获取内存

func (*SourceCodeParse) GetPorts

func (d *SourceCodeParse) GetPorts() (ports []types.Port)

GetPorts 获取端口列表

func (*SourceCodeParse) GetServiceInfo

func (d *SourceCodeParse) GetServiceInfo() []ServiceInfo

GetServiceInfo 获取service info

func (*SourceCodeParse) GetValid

func (d *SourceCodeParse) GetValid() bool

GetValid 获取源是否合法

func (*SourceCodeParse) GetVolumes

func (d *SourceCodeParse) GetVolumes() (volumes []types.Volume)

GetVolumes 获取存储列表

func (*SourceCodeParse) Parse

func (d *SourceCodeParse) Parse() ParseErrorList

Parse 获取代码 解析代码 检验代码

type ThirdPartyServiceParse

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

ThirdPartyServiceParse is one of the implematation of parser.Parser

func (*ThirdPartyServiceParse) GetImage

func (t *ThirdPartyServiceParse) GetImage() Image

GetImage is a dummy method. there is no image for Third-party service.

func (*ThirdPartyServiceParse) GetServiceInfo

func (t *ThirdPartyServiceParse) GetServiceInfo() []ServiceInfo

GetServiceInfo returns information of third-party service from the receiver *ThirdPartyServiceParse.

func (*ThirdPartyServiceParse) Parse

Parse blablabla

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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