plugin

package
v1.28.0 Latest Latest
Warning

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

Go to latest
Published: Jul 26, 2021 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 Flag

type Flag struct {
	Name    string    // Name of the plugin
	Command *exec.Cmd // Command specification
}

Flag defines an external plugin specification passed over the command line.

Plugin specifications received over the command line are simply plugin names followed by arguments for the plugin.

An executable with the name thriftrw-plugin-$name is expected on the $PATH. Remaining arguments are passed to the program. For example,

-p "foo -a --bc"

Will pass the arguments "-a --bc" to the executable "thriftrw-plugin-foo".

func (*Flag) Handle

func (f *Flag) Handle() (Handle, error)

Handle gets a Handle to this plugin specification.

The returned handle MUST be closed by the caller if error was nil.

func (*Flag) UnmarshalFlag

func (f *Flag) UnmarshalFlag(value string) error

UnmarshalFlag parses a string specification of a plugin.

type Flags

type Flags []Flag

Flags is a collection of ThriftRW external plugin specifications.

func (Flags) Handle

func (fs Flags) Handle() (MultiHandle, error)

Handle gets a MultiHandle to all the plugins in this list or nil if the list is empty.

The returned handle MUST be closed by the caller if error was nil.

type Handle

type Handle interface {
	io.Closer

	// Name is the name of this plugin.
	Name() string

	// ServiceGenerator returns a ServiceGenerator for this plugin or nil if
	// this plugin does not implement that feature.
	//
	// Note that the ServiceGenerator is valid only as long as Close is not
	// called on the Handle.
	ServiceGenerator() ServiceGenerator
}

Handle is a handle to ThriftRW plugin.

var EmptyHandle Handle = emptyHandle{}

EmptyHandle is a no-op Handle that does not do anything.

func NewTransportHandle

func NewTransportHandle(name string, t envelope.Transport) (Handle, error)

NewTransportHandle builds a new Handle which speaks to the given transport.

If the transport is an io.Closer, it will be closed when the handle is closed.

type MultiHandle

type MultiHandle []Handle

MultiHandle wraps a collection of handles into a single handle.

func (MultiHandle) Close

func (mh MultiHandle) Close() error

Close closes all Handles associated with this MultiHandle.

func (MultiHandle) Name added in v0.2.0

func (mh MultiHandle) Name() string

Name is the combined name of this plugin

func (MultiHandle) ServiceGenerator

func (mh MultiHandle) ServiceGenerator() ServiceGenerator

ServiceGenerator returns a ServiceGenerator which calls into the ServiceGenerators of all plugins associated with this MultiHandle and consolidates their results.

type MultiServiceGenerator

type MultiServiceGenerator []ServiceGenerator

MultiServiceGenerator wraps a collection of ServiceGenerators into a single ServiceGenerator.

func (MultiServiceGenerator) Generate

Generate calls all the service generators associated with this plugin and consolidates their output.

Any conflicts in the generated files will result in a failure.

func (MultiServiceGenerator) Handle added in v0.2.0

func (msg MultiServiceGenerator) Handle() Handle

Handle returns a reference to the Handle that owns this ServiceGenerator.

type ServiceGenerator added in v0.2.0

type ServiceGenerator interface {
	api.ServiceGenerator

	// Handle returns the Handle that owns this ServiceGenerator.
	Handle() Handle
}

ServiceGenerator generates files for Thrift services.

var EmptyServiceGenerator ServiceGenerator = emptyServiceGenerator{}

EmptyServiceGenerator is a no-op service generator that does not generate any new files.

Directories

Path Synopsis
builtin
pluginapigen
Package pluginapigen provides a plugin Handle that generates code used by the plugin system itself.
Package pluginapigen provides a plugin Handle that generates code used by the plugin system itself.
Package handletest is a generated GoMock package.
Package handletest is a generated GoMock package.

Jump to

Keyboard shortcuts

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