plugin

package
v0.0.0-...-d892afd Latest Latest
Warning

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

Go to latest
Published: Apr 30, 2022 License: MIT Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BelaurLogWriter

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

BelaurLogWriter represents a concurrent safe log writer which can be shared with go-plugin.

func (*BelaurLogWriter) Flush

func (g *BelaurLogWriter) Flush() error

Flush locks and flushes the underlying writer.

func (*BelaurLogWriter) Write

func (g *BelaurLogWriter) Write(p []byte) (n int, err error)

Write locks and writes to the underlying writer.

func (*BelaurLogWriter) WriteString

func (g *BelaurLogWriter) WriteString(s string) (int, error)

WriteString locks and passes on the string to write to the underlying writer.

type BelaurPlugin

type BelaurPlugin interface {
	GetJobs() (proto.Plugin_GetJobsClient, error)
	ExecuteJob(job *proto.Job) (*proto.JobResult, error)
}

BelaurPlugin is the Bhojpur Belaur plugin interface used for communication with the plugin.

type BelaurPluginClient

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

BelaurPluginClient represents gRPC client

func (*BelaurPluginClient) ExecuteJob

func (m *BelaurPluginClient) ExecuteJob(job *proto.Job) (*proto.JobResult, error)

ExecuteJob triggers the execution of the given job in the plugin.

func (*BelaurPluginClient) GetJobs

GetJobs requests all jobs from the plugin. We get a stream of proto.Job back.

type BelaurPluginImpl

type BelaurPluginImpl struct {
	Impl BelaurPlugin

	plugin.NetRPCUnsupportedPlugin
}

BelaurPluginImpl represents the plugin implementation on client side.

func (*BelaurPluginImpl) GRPCClient

func (p *BelaurPluginImpl) GRPCClient(context context.Context, b *plugin.GRPCBroker, c *grpc.ClientConn) (interface{}, error)

GRPCClient is the passing method for the gRPC client.

func (*BelaurPluginImpl) GRPCServer

func (p *BelaurPluginImpl) GRPCServer(b *plugin.GRPCBroker, s *grpc.Server) error

GRPCServer is needed here to implement hashicorp plugin.Plugin interface. Real implementation is in the plugin(s).

type GoPlugin

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

GoPlugin represents a single plugin instance which uses gRPC to connect to exactly one plugin.

func (*GoPlugin) Close

func (p *GoPlugin) Close()

Close shutdown the plugin and kills the gRPC connection. Remember to call this when you call plugin.Connect.

func (*GoPlugin) Execute

func (p *GoPlugin) Execute(j *belaur.Job) error

Execute triggers the execution of one single job for the given plugin.

func (*GoPlugin) FlushLogs

func (p *GoPlugin) FlushLogs() error

FlushLogs flushes the logs.

func (*GoPlugin) GetJobs

func (p *GoPlugin) GetJobs() ([]*belaur.Job, error)

GetJobs receives all implemented jobs from the given plugin.

func (*GoPlugin) Init

func (p *GoPlugin) Init(command *exec.Cmd, logPath *string) error

Init prepares the log path, set's up new certificates for both Bhojpur Belaur and plugin, and prepares the go-plugin client.

It expects the start command for the plugin and the path where the log file should be stored.

It's up to the caller to call plugin.Close to shutdown the plugin and close the gRPC connection.

func (*GoPlugin) NewPlugin

func (p *GoPlugin) NewPlugin(ca security.CAAPI) Plugin

NewPlugin creates a new instance of Plugin. One Plugin instance represents one connection to a plugin.

func (*GoPlugin) Validate

func (p *GoPlugin) Validate() error

Validate validates the interface of the plugin.

type Plugin

type Plugin interface {
	// NewPlugin creates a new instance of plugin
	NewPlugin(ca security.CAAPI) Plugin

	// Init initializes the go-plugin client and generates a
	// new certificate pair for Bhojpur Belaur and the plugin/pipeline.
	Init(command *exec.Cmd, logPath *string) error

	// Validate validates the plugin interface.
	Validate() error

	// Execute executes one job of a pipeline.
	Execute(j *belaur.Job) error

	// GetJobs returns all real jobs from the pipeline.
	GetJobs() ([]*belaur.Job, error)

	// FlushLogs flushes the logs.
	FlushLogs() error

	// Close closes the connection and cleans open file writes.
	Close()
}

Plugin represents the plugin implementation.

Jump to

Keyboard shortcuts

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