| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // 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 host
- 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)
- self.OnGuestsMigrate(ctx, host, 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(ctx, 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(ctx, 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)
- }
|