2017-03-05 07:56:08 +00:00
|
|
|
package pipeline
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-11-25 19:43:31 +00:00
|
|
|
"strings"
|
2022-07-31 15:12:15 +00:00
|
|
|
"sync"
|
2017-03-05 07:56:08 +00:00
|
|
|
"time"
|
|
|
|
|
2022-06-15 16:11:20 +00:00
|
|
|
"github.com/rs/zerolog"
|
2021-11-23 14:36:52 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2017-03-05 07:56:08 +00:00
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
|
2021-11-26 02:34:48 +00:00
|
|
|
backend "github.com/woodpecker-ci/woodpecker/pipeline/backend/types"
|
2021-09-24 11:18:34 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/multipart"
|
2017-03-05 07:56:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
// State defines the pipeline and process state.
|
|
|
|
State struct {
|
|
|
|
// Global state of the pipeline.
|
|
|
|
Pipeline struct {
|
|
|
|
// Pipeline time started
|
|
|
|
Time int64 `json:"time"`
|
|
|
|
// Current pipeline step
|
|
|
|
Step *backend.Step `json:"step"`
|
|
|
|
// Current pipeline error state
|
|
|
|
Error error `json:"error"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Current process state.
|
|
|
|
Process *backend.State
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Runtime is a configuration runtime.
|
|
|
|
type Runtime struct {
|
|
|
|
err error
|
|
|
|
spec *backend.Config
|
|
|
|
engine backend.Engine
|
|
|
|
started int64
|
|
|
|
|
|
|
|
ctx context.Context
|
|
|
|
tracer Tracer
|
|
|
|
logger Logger
|
2022-06-15 16:11:20 +00:00
|
|
|
|
|
|
|
Description map[string]string // The runtime descriptors.
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new runtime using the specified runtime
|
|
|
|
// configuration and runtime engine.
|
|
|
|
func New(spec *backend.Config, opts ...Option) *Runtime {
|
|
|
|
r := new(Runtime)
|
2022-06-15 16:11:20 +00:00
|
|
|
r.Description = map[string]string{}
|
2017-03-05 07:56:08 +00:00
|
|
|
r.spec = spec
|
|
|
|
r.ctx = context.Background()
|
|
|
|
for _, opts := range opts {
|
|
|
|
opts(r)
|
|
|
|
}
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2022-06-15 16:11:20 +00:00
|
|
|
func (r *Runtime) MakeLogger() zerolog.Logger {
|
|
|
|
logCtx := log.With()
|
|
|
|
for key, val := range r.Description {
|
|
|
|
logCtx = logCtx.Str(key, val)
|
|
|
|
}
|
|
|
|
return logCtx.Logger()
|
|
|
|
}
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
// Starts the execution of the pipeline and waits for it to complete
|
2017-03-05 07:56:08 +00:00
|
|
|
func (r *Runtime) Run() error {
|
2022-06-15 16:11:20 +00:00
|
|
|
logger := r.MakeLogger()
|
|
|
|
logger.Debug().Msgf("Executing %d stages, in order of:", len(r.spec.Stages))
|
|
|
|
for _, stage := range r.spec.Stages {
|
|
|
|
steps := []string{}
|
|
|
|
for _, step := range stage.Steps {
|
|
|
|
steps = append(steps, step.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Debug().
|
|
|
|
Str("Stage", stage.Name).
|
|
|
|
Str("Steps", strings.Join(steps, ",")).
|
|
|
|
Msg("stage")
|
|
|
|
}
|
|
|
|
|
2017-03-05 07:56:08 +00:00
|
|
|
defer func() {
|
2021-11-23 14:36:52 +00:00
|
|
|
if err := r.engine.Destroy(r.ctx, r.spec); err != nil {
|
2022-06-15 16:11:20 +00:00
|
|
|
logger.Error().Err(err).Msg("could not destroy engine")
|
2021-11-23 14:36:52 +00:00
|
|
|
}
|
2017-03-05 07:56:08 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
r.started = time.Now().Unix()
|
2018-04-01 18:34:01 +00:00
|
|
|
if err := r.engine.Setup(r.ctx, r.spec); err != nil {
|
2017-03-05 07:56:08 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, stage := range r.spec.Stages {
|
|
|
|
select {
|
|
|
|
case <-r.ctx.Done():
|
|
|
|
return ErrCancel
|
|
|
|
case err := <-r.execAll(stage.Steps):
|
|
|
|
if err != nil {
|
|
|
|
r.err = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return r.err
|
|
|
|
}
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
// Updates the current status of a step
|
|
|
|
func (r *Runtime) traceStep(processState *backend.State, err error, step *backend.Step) error {
|
|
|
|
if r.tracer == nil {
|
|
|
|
// no tracer nothing to trace :)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if processState == nil {
|
|
|
|
processState = new(backend.State)
|
|
|
|
if err != nil {
|
|
|
|
processState.Error = err
|
|
|
|
processState.Exited = true
|
|
|
|
processState.OOMKilled = false
|
|
|
|
processState.ExitCode = 126 // command invoked cannot be executed.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
state := new(State)
|
|
|
|
state.Pipeline.Time = r.started
|
|
|
|
state.Pipeline.Step = step
|
|
|
|
state.Process = processState // empty
|
|
|
|
state.Pipeline.Error = r.err
|
|
|
|
|
2022-06-15 16:11:20 +00:00
|
|
|
if traceErr := r.tracer.Trace(state); traceErr != nil {
|
|
|
|
return traceErr
|
|
|
|
}
|
|
|
|
return err
|
2022-05-11 11:40:44 +00:00
|
|
|
}
|
2017-03-05 07:56:08 +00:00
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
// Executes a set of parallel steps
|
|
|
|
func (r *Runtime) execAll(steps []*backend.Step) <-chan error {
|
2017-03-05 07:56:08 +00:00
|
|
|
var g errgroup.Group
|
|
|
|
done := make(chan error)
|
2022-06-15 16:11:20 +00:00
|
|
|
logger := r.MakeLogger()
|
2017-03-05 07:56:08 +00:00
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
for _, step := range steps {
|
|
|
|
// required since otherwise the loop variable
|
|
|
|
// will be captured by the function. This will
|
|
|
|
// recreate the step "variable"
|
|
|
|
step := step
|
2017-03-05 07:56:08 +00:00
|
|
|
g.Go(func() error {
|
2022-05-11 11:40:44 +00:00
|
|
|
// Case the pipeline was already complete.
|
2022-06-15 16:11:20 +00:00
|
|
|
logger.Debug().
|
|
|
|
Str("Step", step.Name).
|
|
|
|
Msg("Prepare")
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
switch {
|
|
|
|
case r.err != nil && !step.OnFailure:
|
2022-06-15 16:11:20 +00:00
|
|
|
logger.Debug().
|
|
|
|
Str("Step", step.Name).
|
|
|
|
Err(r.err).
|
|
|
|
Msgf("Skipped due to OnFailure=%t", step.OnFailure)
|
2022-05-11 11:40:44 +00:00
|
|
|
return nil
|
|
|
|
case r.err == nil && !step.OnSuccess:
|
2022-06-15 16:11:20 +00:00
|
|
|
logger.Debug().
|
|
|
|
Str("Step", step.Name).
|
|
|
|
Msgf("Skipped due to OnSuccess=%t", step.OnSuccess)
|
2022-05-11 11:40:44 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trace started.
|
|
|
|
err := r.traceStep(nil, nil, step)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-06-15 16:11:20 +00:00
|
|
|
logger.Debug().
|
|
|
|
Str("Step", step.Name).
|
|
|
|
Msg("Executing")
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
processState, err := r.exec(step)
|
|
|
|
|
2022-06-15 16:11:20 +00:00
|
|
|
logger.Debug().
|
|
|
|
Str("Step", step.Name).
|
|
|
|
Msg("Complete")
|
|
|
|
|
|
|
|
// if we got a nil process but an error state
|
|
|
|
// then we need to log the internal error to the step.
|
|
|
|
if r.logger != nil && err != nil && processState == nil {
|
|
|
|
_ = r.logger.Log(step, multipart.New(strings.NewReader(
|
|
|
|
"Backend engine error while running step: "+err.Error(),
|
|
|
|
)))
|
2022-05-11 11:40:44 +00:00
|
|
|
}
|
|
|
|
|
2022-06-15 16:11:20 +00:00
|
|
|
// Return the error after tracing it.
|
|
|
|
return r.traceStep(processState, err, step)
|
2017-03-05 07:56:08 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
done <- g.Wait()
|
|
|
|
close(done)
|
|
|
|
}()
|
|
|
|
return done
|
|
|
|
}
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
// Executes the step and returns the state and error.
|
|
|
|
func (r *Runtime) exec(step *backend.Step) (*backend.State, error) {
|
|
|
|
if err := r.engine.Exec(r.ctx, step); err != nil {
|
|
|
|
return nil, err
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-31 15:12:15 +00:00
|
|
|
var wg sync.WaitGroup
|
2017-03-05 07:56:08 +00:00
|
|
|
if r.logger != nil {
|
2022-05-11 11:40:44 +00:00
|
|
|
rc, err := r.engine.Tail(r.ctx, step)
|
2017-03-05 07:56:08 +00:00
|
|
|
if err != nil {
|
2022-05-11 11:40:44 +00:00
|
|
|
return nil, err
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-31 15:12:15 +00:00
|
|
|
wg.Add(1)
|
2017-03-05 07:56:08 +00:00
|
|
|
go func() {
|
2022-07-31 15:12:15 +00:00
|
|
|
defer wg.Done()
|
2022-06-15 16:11:20 +00:00
|
|
|
logger := r.MakeLogger()
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
if err := r.logger.Log(step, multipart.New(rc)); err != nil {
|
2022-06-15 16:11:20 +00:00
|
|
|
logger.Error().Err(err).Msg("process logging failed")
|
2021-11-23 14:36:52 +00:00
|
|
|
}
|
|
|
|
_ = rc.Close()
|
2017-03-05 07:56:08 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
// nothing else to do, this is a detached process.
|
|
|
|
if step.Detached {
|
|
|
|
return nil, nil
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-31 15:12:15 +00:00
|
|
|
// Some pipeline backends, such as local, will close the pipe from Tail on Wait,
|
|
|
|
// so first make sure all reading has finished.
|
|
|
|
wg.Wait()
|
2022-05-11 11:40:44 +00:00
|
|
|
waitState, err := r.engine.Wait(r.ctx, step)
|
2017-03-05 07:56:08 +00:00
|
|
|
if err != nil {
|
2022-05-11 11:40:44 +00:00
|
|
|
return nil, err
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|
|
|
|
|
2022-05-11 11:40:44 +00:00
|
|
|
if waitState.OOMKilled {
|
|
|
|
return waitState, &OomError{
|
|
|
|
Name: step.Name,
|
|
|
|
Code: waitState.ExitCode,
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|
2022-05-11 11:40:44 +00:00
|
|
|
} else if waitState.ExitCode != 0 {
|
|
|
|
return waitState, &ExitError{
|
|
|
|
Name: step.Name,
|
|
|
|
Code: waitState.ExitCode,
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|
|
|
|
}
|
2022-05-11 11:40:44 +00:00
|
|
|
|
|
|
|
return waitState, nil
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|