mirror of
https://github.com/kubesphere/kubekey.git
synced 2026-01-01 00:59:24 +00:00
136 lines
2.8 KiB
Go
136 lines
2.8 KiB
Go
/*
|
|
Copyright 2021 The KubeSphere Authors.
|
|
|
|
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,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package ending
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/kubesphere/kubekey/pkg/core/connector"
|
|
"github.com/pkg/errors"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
type TaskResult struct {
|
|
mu sync.Mutex
|
|
ActionResults []*ActionResult
|
|
Status ResultStatus
|
|
StartTime time.Time
|
|
EndTime time.Time
|
|
}
|
|
|
|
func NewTaskResult() *TaskResult {
|
|
return &TaskResult{ActionResults: make([]*ActionResult, 0, 0), Status: NULL, StartTime: time.Now()}
|
|
}
|
|
|
|
func (t *TaskResult) ErrResult() {
|
|
if t.Status != NULL {
|
|
return
|
|
}
|
|
t.EndTime = time.Now()
|
|
t.Status = FAILED
|
|
}
|
|
|
|
func (t *TaskResult) NormalResult() {
|
|
if t.Status != NULL {
|
|
return
|
|
}
|
|
t.EndTime = time.Now()
|
|
t.Status = SUCCESS
|
|
}
|
|
|
|
func (t *TaskResult) SkippedResult() {
|
|
if t.Status != NULL {
|
|
return
|
|
}
|
|
t.EndTime = time.Now()
|
|
t.Status = SKIPPED
|
|
}
|
|
|
|
func (t *TaskResult) AppendSkip(host connector.Host) {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
now := time.Now()
|
|
e := &ActionResult{
|
|
Host: host,
|
|
Status: SKIPPED,
|
|
Error: nil,
|
|
StartTime: t.StartTime,
|
|
EndTime: now,
|
|
}
|
|
|
|
t.ActionResults = append(t.ActionResults, e)
|
|
t.EndTime = now
|
|
}
|
|
|
|
func (t *TaskResult) AppendSuccess(host connector.Host) {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
now := time.Now()
|
|
e := &ActionResult{
|
|
Host: host,
|
|
Status: SUCCESS,
|
|
Error: nil,
|
|
StartTime: t.StartTime,
|
|
EndTime: now,
|
|
}
|
|
|
|
t.ActionResults = append(t.ActionResults, e)
|
|
t.EndTime = now
|
|
}
|
|
|
|
func (t *TaskResult) AppendErr(host connector.Host, err error) {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
now := time.Now()
|
|
e := &ActionResult{
|
|
Host: host,
|
|
Status: FAILED,
|
|
Error: err,
|
|
StartTime: t.StartTime,
|
|
EndTime: now,
|
|
}
|
|
|
|
t.ActionResults = append(t.ActionResults, e)
|
|
t.EndTime = now
|
|
t.Status = FAILED
|
|
}
|
|
|
|
func (t *TaskResult) IsFailed() bool {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
if t.Status == FAILED {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (t *TaskResult) CombineErr() error {
|
|
t.mu.Lock()
|
|
defer t.mu.Unlock()
|
|
if len(t.ActionResults) != 0 {
|
|
var str string
|
|
for i := range t.ActionResults {
|
|
if t.ActionResults[i].Status != FAILED {
|
|
continue
|
|
}
|
|
str += fmt.Sprintf("\nfailed: [%s] %s", t.ActionResults[i].Host.GetName(), t.ActionResults[i].Error.Error())
|
|
}
|
|
return errors.New(str)
|
|
}
|
|
return nil
|
|
}
|