mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-20 19:26:17 +08:00
48 lines
1.5 KiB
Go
48 lines
1.5 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// 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 modules
|
|
|
|
import (
|
|
"time"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
"yunion.io/x/log"
|
|
|
|
"yunion.io/x/onecloud/pkg/mcclient"
|
|
)
|
|
|
|
type ITaskResourceManager interface {
|
|
PerformClassAction(session *mcclient.ClientSession, action string, params jsonutils.JSONObject) (jsonutils.JSONObject, error)
|
|
}
|
|
|
|
func TaskComplete(man ITaskResourceManager, session *mcclient.ClientSession, taskId string, params jsonutils.JSONObject) {
|
|
for i := 0; i < 3; i++ {
|
|
_, err := man.PerformClassAction(session, taskId, params)
|
|
if err == nil {
|
|
log.Infof("Sync task %s complete succ", taskId)
|
|
break
|
|
}
|
|
log.Errorf("Sync task %s complete error: %v", taskId, err)
|
|
time.Sleep(5 * time.Second)
|
|
}
|
|
}
|
|
|
|
func TaskFailed(man ITaskResourceManager, session *mcclient.ClientSession, taskId string, reason string) {
|
|
params := jsonutils.NewDict()
|
|
params.Add(jsonutils.NewString("error"), "__status__")
|
|
params.Add(jsonutils.NewString(reason), "__reason__")
|
|
TaskComplete(man, session, taskId, params)
|
|
}
|