mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-01 05:22:24 +08:00
67 lines
2.4 KiB
Go
67 lines
2.4 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 container
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
"yunion.io/x/log"
|
|
|
|
api "yunion.io/x/onecloud/pkg/apis/compute"
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/db"
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/db/taskman"
|
|
"yunion.io/x/onecloud/pkg/compute/models"
|
|
)
|
|
|
|
func init() {
|
|
taskman.RegisterTask(ContainerSyncStatusTask{})
|
|
}
|
|
|
|
type ContainerSyncStatusTask struct {
|
|
ContainerBaseTask
|
|
}
|
|
|
|
func (t *ContainerSyncStatusTask) OnInit(ctx context.Context, obj db.IStandaloneModel, body jsonutils.JSONObject) {
|
|
if err := t.GetPodDriver().RequestSyncContainerStatus(ctx, t.GetUserCred(), t); err != nil {
|
|
log.Errorf("t.GetPodDriver().RequestSyncContainerStatus fail %s", err)
|
|
if strings.Contains(err.Error(), "NotFoundError") {
|
|
// already deleted
|
|
obj.(*models.SContainer).SetStatus(ctx, t.GetUserCred(), api.CONTAINER_STATUS_UNKNOWN, "not found")
|
|
t.SetStageComplete(ctx, nil)
|
|
return
|
|
}
|
|
t.OnSyncStatusFailed(ctx, obj.(*models.SContainer), jsonutils.NewString(err.Error()))
|
|
return
|
|
}
|
|
t.SetStage("OnSyncStatus", nil)
|
|
}
|
|
|
|
func (t *ContainerSyncStatusTask) OnSyncStatus(ctx context.Context, container *models.SContainer, data jsonutils.JSONObject) {
|
|
resp := new(api.ContainerSyncStatusResponse)
|
|
data.Unmarshal(resp)
|
|
if err := container.SetStatusFromHost(ctx, t.GetUserCred(), *resp, "Called by ContainerSyncStatusTask"); err != nil {
|
|
log.Errorf("SetStatusFromHost for container %s: %v", container.GetId(), err)
|
|
}
|
|
t.SetStageComplete(ctx, nil)
|
|
}
|
|
|
|
func (t *ContainerSyncStatusTask) OnSyncStatusFailed(ctx context.Context, container *models.SContainer, reason jsonutils.JSONObject) {
|
|
log.Errorf("ContainerSyncStatusTask.OnSyncStatusFailed fail %s", reason.String())
|
|
container.SetStatus(ctx, t.GetUserCred(), api.CONTAINER_STATUS_SYNC_STATUS_FAILED, reason.String())
|
|
t.SetStageFailed(ctx, reason)
|
|
}
|