Files
cloudpods/pkg/compute/tasks/host_maintenance_task.go
2022-01-20 21:42:21 +08:00

93 lines
3.1 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 tasks
import (
"context"
"yunion.io/x/jsonutils"
"yunion.io/x/onecloud/pkg/apis"
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"
"yunion.io/x/onecloud/pkg/util/logclient"
)
type HostMaintainTask struct {
taskman.STask
}
func init() {
taskman.RegisterTask(HostMaintainTask{})
}
func (self *HostMaintainTask) OnInit(ctx context.Context, obj db.IStandaloneModel, data jsonutils.JSONObject) {
host := obj.(*models.SHost)
preferHostId, _ := self.Params.Get("prefer_host_id")
var hostGuests = []*api.GuestBatchMigrateParams{}
err := self.Params.Unmarshal(&hostGuests, "guests")
if err != nil {
self.TaskFailed(ctx, host, jsonutils.NewString(err.Error()))
return
}
guests := make([]*models.SGuest, 0)
hostGuestParams := make([]*api.GuestBatchMigrateParams, 0)
for i := range hostGuests {
guest := models.GuestManager.FetchGuestById(hostGuests[i].Id)
if guest != nil {
guests = append(guests, guest)
hostGuestParams = append(hostGuestParams, hostGuests[i])
}
}
if len(guests) == 0 {
// no guest to migrate
self.SetStageComplete(ctx, nil)
return
}
kwargs := jsonutils.NewDict()
kwargs.Set("guests", jsonutils.Marshal(hostGuestParams))
kwargs.Set("prefer_host_id", preferHostId)
self.SetStage("OnGuestsMigrate", nil)
err = models.GuestManager.StartHostGuestsMigrateTask(ctx, self.UserCred, guests, kwargs, self.Id)
if err != nil {
self.TaskFailed(ctx, host, jsonutils.NewString(err.Error()))
return
}
}
func (self *HostMaintainTask) OnGuestsMigrate(ctx context.Context, host *models.SHost, data jsonutils.JSONObject) {
host.PerformDisable(ctx, self.UserCred, nil, apis.PerformDisableInput{})
host.SetStatus(self.UserCred, api.BAREMETAL_MAINTAINING, "On host maintain task complete")
logclient.AddSimpleActionLog(host, logclient.ACT_HOST_MAINTAINING, "host maintain", self.UserCred, true)
self.SetStageComplete(ctx, nil)
}
func (self *HostMaintainTask) OnGuestsMigrateFailed(ctx context.Context, host *models.SHost, data jsonutils.JSONObject) {
self.TaskFailed(ctx, host, data)
}
func (self *HostMaintainTask) TaskFailed(ctx context.Context, host *models.SHost, reason jsonutils.JSONObject) {
host.PerformDisable(ctx, self.UserCred, nil, apis.PerformDisableInput{})
host.SetStatus(self.UserCred, api.BAREMETAL_MAINTAIN_FAIL, "On host maintain task complete failed")
logclient.AddSimpleActionLog(host, logclient.ACT_HOST_MAINTAINING, reason, self.UserCred, false)
self.SetStageFailed(ctx, reason)
}