Documentation ¶
Overview ¶
Package pipeline provides models to represent pipeline files and runs
Index ¶
- func ParseArguments(middlewareArguments interface{}, middlewareIdentifier string, run *Run) bool
- func ParseArgumentsIncludingParents(middlewareArguments interface{}, middlewareIdentifier string, run *Run) bool
- type Arguments
- type DefaultSettings
- type Definition
- type DefinitionsLookup
- type File
- type FileImportSkeleton
- type HookDefinitions
- type Logger
- func (logger *Logger) AddReaderEntry(reader io.Reader)
- func (logger *Logger) AddWriteCloserEntry() io.WriteCloser
- func (logger *Logger) AllErrorMessages() []string
- func (logger *Logger) Close()
- func (logger *Logger) Closed() bool
- func (logger *Logger) Debug(logFields ...fields.LogEntryField)
- func (logger *Logger) DebugCount() int
- func (logger *Logger) Error(err error, logFields ...fields.LogEntryField)
- func (logger *Logger) ErrorCount() int
- func (logger *Logger) Info(logFields ...fields.LogEntryField)
- func (logger *Logger) InfoCount() int
- func (logger *Logger) LastError() error
- func (logger *Logger) Level() logrus.Level
- func (logger *Logger) PossibleError(err error)
- func (logger *Logger) PossibleErrorWithExplanation(err error, explanation string)
- func (logger *Logger) Read(p []byte) (int, error)
- func (logger *Logger) SetLevel(level logrus.Level)
- func (logger *Logger) StderrOutput(message string, logFields ...fields.LogEntryField)
- func (logger *Logger) String() string
- func (logger *Logger) Summary() string
- func (logger *Logger) Trace(logFields ...fields.LogEntryField)
- func (logger *Logger) TraceCount() int
- func (logger *Logger) Warn(logFields ...fields.LogEntryField)
- func (logger *Logger) WarnCount() int
- type Reference
- type Run
- func (run *Run) AddCancelHook(cancelHook func() error)
- func (run *Run) ArgumentAtPath(path ...string) (interface{}, error)
- func (run *Run) ArgumentAtPathIncludingParents(path ...string) (interface{}, error)
- func (run *Run) ArgumentsCopy() map[string]interface{}
- func (run *Run) Cancel() error
- func (run *Run) Cancelled() bool
- func (run *Run) Close()
- func (run *Run) Completed() bool
- func (run *Run) SetArgumentAtPath(value interface{}, path ...string) error
- func (run *Run) SetArguments(value map[string]interface{})
- func (run *Run) String() string
- func (run *Run) Wait()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ParseArguments ¶ added in v0.32.2
ParseArguments transfers an unstructured map of arguments into a struct
func ParseArgumentsIncludingParents ¶ added in v0.32.2
func ParseArgumentsIncludingParents( middlewareArguments interface{}, middlewareIdentifier string, run *Run, ) bool
ParseArgumentsIncludingParents is like ParseArguments, but will traverse through parents if no suitable has been found
Types ¶
type Arguments ¶ added in v0.32.2
type Arguments = map[string]interface{}
Arguments maps the string key corresponding to each middleware's identifier to its specific arguments
type DefaultSettings ¶
DefaultSettings are file-level options (to be refined in future)
type Definition ¶ added in v0.32.2
type Definition struct { BuiltIn bool DefinitionArguments map[string]interface{} FileName string Public bool }
Definition defines default arguments for a pipeline identifier
func NewDefinition ¶ added in v0.32.2
func NewDefinition( arguments map[string]interface{}, pipelineFileName string, isPublic bool, isBuiltIn bool, ) *Definition
NewDefinition creates a new Definition
type DefinitionsLookup ¶ added in v0.32.2
type DefinitionsLookup = map[string][]Definition
DefinitionsLookup maps identifiers to their definitions
func MergePipelineDefinitions ¶
func MergePipelineDefinitions(definition1 DefinitionsLookup, definition2 DefinitionsLookup) DefinitionsLookup
MergePipelineDefinitions merges two definition lookups into a single one
type File ¶
type File struct { Default DefaultSettings FileName string Hooks HookDefinitions Import []string // in pipeline files, each command can have arbitrary parameters // it may also have "steps" // each step can be either a string referencing another pipeline // or a dictionary containing additional parameters Public map[string]map[string]interface{} Private map[string]map[string]interface{} }
File is a representation of a yaml pipeline file as a Go struct
Note that this struct does not have exactly the same structure as the yaml file
type FileImportSkeleton ¶ added in v0.32.2
type FileImportSkeleton struct {
Import []string
}
FileImportSkeleton is a very basic representation of a yaml pipeline file concerned only with import declarations
type HookDefinitions ¶
HookDefinitions are not currently used
type Logger ¶ added in v0.32.2
type Logger struct { Indentation int ErrorCallback func(error) // contains filtered or unexported fields }
Logger keeps track of a pipeline run's log entries while several pipeline runs might be executing asynchronously. It needs to: - implement the io.Reader interface - be non-blocking, even when its output is not yet being read - keep a running total of the number of log entries at each log level, as well as all errors - be nestable in the sense that the output of another logger can be slotted in - preserve the order of log entries, including those slotted in
func NewClosedLoggerWithResult ¶ added in v0.32.2
NewClosedLoggerWithResult creates a new Logger that is already closed with the specified result
func (*Logger) AddReaderEntry ¶ added in v0.32.2
AddReaderEntry adds an entry that will write the entire contents of the provided reader before proceeding to the next entry
func (*Logger) AddWriteCloserEntry ¶ added in v0.32.2
func (logger *Logger) AddWriteCloserEntry() io.WriteCloser
AddWriteCloserEntry adds an entry that will write everything written to the writer to the log before proceeding to the next entry
You must close the io.WriteCloser to indicate that you are done writing, so that the log can move on.
func (*Logger) AllErrorMessages ¶ added in v0.32.2
AllErrorMessages returns all errors logged up to this point
func (*Logger) Close ¶ added in v0.32.2
func (logger *Logger) Close()
Close finalizes the log, preventing further entries from being logged
func (*Logger) Debug ¶ added in v0.32.2
func (logger *Logger) Debug(logFields ...fields.LogEntryField)
Debug adds an appropriate entry for a debug message
func (*Logger) DebugCount ¶ added in v0.32.2
DebugCount is the total number of debug logs encountered
func (*Logger) Error ¶ added in v0.32.2
func (logger *Logger) Error(err error, logFields ...fields.LogEntryField)
Error adds an appropriate entry for an encountered error
func (*Logger) ErrorCount ¶ added in v0.32.2
ErrorCount is the total number of error logs encountered
func (*Logger) Info ¶ added in v0.32.2
func (logger *Logger) Info(logFields ...fields.LogEntryField)
Info adds an appropriate entry for non-critical information
func (*Logger) PossibleError ¶ added in v0.32.2
PossibleError does nothing if it is passed nil and otherwise logs the provided error
func (*Logger) PossibleErrorWithExplanation ¶ added in v0.32.2
PossibleErrorWithExplanation does nothing if it is passed nil and otherwise logs the provided error with an additional explanation
func (*Logger) Read ¶ added in v0.32.2
Read writes an entry, or part of an entry to the provided buffer
io.EOF indicates that the log is closed and all log entries have been read.
func (*Logger) StderrOutput ¶ added in v0.32.2
func (logger *Logger) StderrOutput(message string, logFields ...fields.LogEntryField)
StderrOutput adds an appropriate entry for non-trivial stderr output to the logs
func (*Logger) String ¶ added in v0.32.2
String returns the logger's total output as a string
Note that this will consume the output, competing with other reads, so String should only be called once and not in conjunction with Read.
func (*Logger) Summary ¶ added in v0.32.2
Summary returns a human-readable short description of the logged warnings and errors
func (*Logger) Trace ¶ added in v0.32.2
func (logger *Logger) Trace(logFields ...fields.LogEntryField)
Trace adds an appropriate entry for a trace message
func (*Logger) TraceCount ¶ added in v0.32.2
TraceCount is the total number of trace logs encountered
func (*Logger) Warn ¶ added in v0.32.2
func (logger *Logger) Warn(logFields ...fields.LogEntryField)
Warn adds an appropriate entry for an encountered warning
type Reference ¶ added in v0.32.2
Reference is a map containing a single value indexed by the pipeline's identifier (possibly nil)
type Run ¶
type Run struct { // Identifier is a unique name for pipeline to be executed // // Note that anonymous pipes without an identifier can have invocation arguments, but no definition Identifier *string // Definition references the definition matching the pipeline identifier, if any Definition *Definition // InvocationArguments are passed to the pipe at the time of invocation / run creation InvocationArguments map[string]interface{} // Stdin is a data stream through which the run's input is passed Stdin *datastream.ComposableDataStream // Stdout is a data stream through which the run's output is passed Stdout *datastream.ComposableDataStream // Stderr is a data stream through which the run's stderr output is passed Stderr *datastream.ComposableDataStream // ExitCode is the exit code of the run's shell command, if any ExitCode *int // Log is the dedicated logger for this run // // We need to organize our logs by run, so that the order of entries remains consistent // during parallel execution of several pipelines. Log *Logger // Parent is run that started this run, if any Parent *Run // LogClosingWaitGroup will keep the Log available to be written to, even if the run's shell command has completed // // This is needed if further log entries might have to be added after shell command execution. LogClosingWaitGroup *sync.WaitGroup // StartWaitGroup defers the start of the run's shell command execution // // Middleware might use this to ensure that the shell command is only started // when all required data (e.g. environment variables set by another run) is available. StartWaitGroup *sync.WaitGroup // contains filtered or unexported fields }
Run contains everything needed to actually execute the invocation of a pipe
The middleware operates on these objects, triggering further runs or shell invocations there are three steps to this process:
- Setup In the setup phase the arguments, connections between inputs and outputs, etc. of each run are defined.
- Finalization After the setup, Close() is called to prevent any further changes to input/output connections.
- Execution The shell command is executed and data is piped through the defined input/output connections. Note that some middleware might start additional runs in the execution phase. For example, the `when` middleware for conditional execution will trigger runs based on whether the result of previous runs satisfies a certain condition
func NewRun ¶ added in v0.32.2
func NewRun( identifier *string, invocationArguments map[string]interface{}, definition *Definition, parent *Run, ) (*Run, error)
NewRun creates a new Run with the specified identifier, invocation arguments, definition and parent
All passed parameters are optional.
func (*Run) AddCancelHook ¶
AddCancelHook adds a hook that will be executed when the run is cancelled
Use this to implement cancel functionality in middleware.
func (*Run) ArgumentAtPath ¶
ArgumentAtPath returns the value of the run's arguments at the specified path
func (*Run) ArgumentAtPathIncludingParents ¶
ArgumentAtPathIncludingParents looks up the argument path within the run's arguments or, failing that, its parents
ArgumentAtPathIncludingParents will keep traversing parents until a value is found
func (*Run) ArgumentsCopy ¶
ArgumentsCopy is a deep copy of the run's arguments that can be safely mutated
func (*Run) Close ¶
func (run *Run) Close()
Close closes the Run's input, output, sterr data streams and log, which is required for execution & completion
It is fine to call Close multiple times. After the first, subsequent calls will have no effect.
func (*Run) SetArgumentAtPath ¶
SetArgumentAtPath overwrites the run's argument at the specified path, creating additional levels of nesting if required
func (*Run) SetArguments ¶
SetArguments overwrites the run's arguments entirely