1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
// Copyright 2020 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package task
import (
"context"
stderrors "errors"
"fmt"
"strings"
"sync"
"github.com/pingcap/tiup/pkg/checkpoint"
"github.com/pingcap/tiup/pkg/cluster/ctxt"
logprinter "github.com/pingcap/tiup/pkg/logger/printer"
)
var (
// ErrUnsupportedRollback means the task do not support rollback.
ErrUnsupportedRollback = stderrors.New("unsupported rollback")
// ErrNoExecutor means not being able to get the executor.
ErrNoExecutor = stderrors.New("no executor")
// ErrNoOutput means not being able to get the output of host.
ErrNoOutput = stderrors.New("no outputs available")
)
type (
// Task represents a operation while TiUP execution
Task interface {
fmt.Stringer
Execute(ctx context.Context) error
Rollback(ctx context.Context) error
}
// Serial will execute a bundle of task in serialized way
Serial struct {
ignoreError bool
hideDetailDisplay bool
inner []Task
}
// Parallel will execute a bundle of task in parallelism way
Parallel struct {
ignoreError bool
hideDetailDisplay bool
inner []Task
}
)
func isDisplayTask(t Task) bool {
if _, ok := t.(*Serial); ok {
return true
}
if _, ok := t.(*Parallel); ok {
return true
}
if _, ok := t.(*StepDisplay); ok {
return true
}
if _, ok := t.(*ParallelStepDisplay); ok {
return true
}
return false
}
// Execute implements the Task interface
func (s *Serial) Execute(ctx context.Context) error {
for _, t := range s.inner {
if !isDisplayTask(t) {
if !s.hideDetailDisplay {
ctx.Value(logprinter.ContextKeyLogger).(*logprinter.Logger).
Infof("+ [ Serial ] - %s", t.String())
}
}
ctxt.GetInner(ctx).Ev.PublishTaskBegin(t)
err := t.Execute(ctx)
ctxt.GetInner(ctx).Ev.PublishTaskFinish(t, err)
if err != nil && !s.ignoreError {
return err
}
}
return nil
}
// Rollback implements the Task interface
func (s *Serial) Rollback(ctx context.Context) error {
// Rollback in reverse order
for i := len(s.inner) - 1; i >= 0; i-- {
err := s.inner[i].Rollback(ctx)
if err != nil {
return err
}
}
return nil
}
// String implements the fmt.Stringer interface
func (s *Serial) String() string {
var ss []string
for _, t := range s.inner {
ss = append(ss, t.String())
}
return strings.Join(ss, "\n")
}
// Execute implements the Task interface
func (pt *Parallel) Execute(ctx context.Context) error {
var firstError error
var mu sync.Mutex
wg := sync.WaitGroup{}
maxWorkers := ctxt.GetInner(ctx).Concurrency
workerPool := make(chan struct{}, maxWorkers)
for _, t := range pt.inner {
wg.Add(1)
workerPool <- struct{}{}
// the checkpoint part of context can't be shared between goroutines
// since it's used to trace the stack, so we must create a new layer
// of checkpoint context every time put it into a new goroutine.
go func(ctx context.Context, t Task) {
defer func() {
<-workerPool
wg.Done()
}()
if !isDisplayTask(t) {
if !pt.hideDetailDisplay {
ctx.Value(logprinter.ContextKeyLogger).(*logprinter.Logger).
Infof("+ [Parallel] - %s", t.String())
}
}
ctxt.GetInner(ctx).Ev.PublishTaskBegin(t)
err := t.Execute(ctx)
ctxt.GetInner(ctx).Ev.PublishTaskFinish(t, err)
if err != nil {
mu.Lock()
if firstError == nil {
firstError = err
}
mu.Unlock()
}
}(checkpoint.NewContext(ctx), t)
}
wg.Wait()
if pt.ignoreError {
return nil
}
return firstError
}
// Rollback implements the Task interface
func (pt *Parallel) Rollback(ctx context.Context) error {
var firstError error
var mu sync.Mutex
wg := sync.WaitGroup{}
for _, t := range pt.inner {
wg.Add(1)
// the checkpoint part of context can't be shared between goroutines
// since it's used to trace the stack, so we must create a new layer
// of checkpoint context every time put it into a new goroutine.
go func(ctx context.Context, t Task) {
defer wg.Done()
err := t.Rollback(ctx)
if err != nil {
mu.Lock()
if firstError == nil {
firstError = err
}
mu.Unlock()
}
}(checkpoint.NewContext(ctx), t)
}
wg.Wait()
return firstError
}
// String implements the fmt.Stringer interface
func (pt *Parallel) String() string {
var ss []string
for _, t := range pt.inner {
ss = append(ss, t.String())
}
return strings.Join(ss, "\n")
}
|