_output

package
v0.37.1 Latest Latest
Warning

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

Go to latest
Published: Apr 19, 2021 License: GPL-2.0, GPL-3.0 Imports: 6 Imported by: 0

README

output - Output Override

The output middleware manipulates the pipe's output, either processing it using another pipe or replacing it with a fixed value.

Arguments

It takes either of two mutually exclusive string arguments:

Process

The process argument is a string value containing the name of a pipe to be applied to the output.

private:
    some-pipe:
        output: output-processor
        shell:
            run: some-shell-command

    output-processor:
        some: arguments
Text

The text argument is a string value that specifies the pipe's output. If this argument is provided, the pipe's output will be discarded.

private:
    some-pipe:
        input: "This is the new input"
        shell:
            run: some-shell-command

Documentation

Overview

Package _output provides a middleware to overwrite a pipe's output directly

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Middleware added in v0.32.2

type Middleware struct {
}

Middleware is an output interceptor

func NewMiddleware added in v0.32.2

func NewMiddleware() Middleware

NewMiddleware creates a new middleware instance

func (Middleware) Apply added in v0.32.2

func (outputMiddleware Middleware) Apply(
	run *pipeline.Run,
	next func(pipelineRun *pipeline.Run),
	executionContext *middleware.ExecutionContext,
)

Apply is where the middleware's logic resides

It adapts the run based on its slice of the run's arguments. It may also trigger side effects such as executing shell commands or full runs of other pipelines. When done, this function should call next in order to continue unwinding the stack.

func (Middleware) String added in v0.32.2

func (outputMiddleware Middleware) String() string

String is a human-readable description

Jump to

Keyboard shortcuts

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