mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-23 04:51:39 +08:00
138 lines
4.5 KiB
Go
138 lines
4.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 container
|
|
|
|
import (
|
|
"context"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
"yunion.io/x/pkg/errors"
|
|
|
|
"yunion.io/x/onecloud/pkg/apis"
|
|
api "yunion.io/x/onecloud/pkg/apis/compute"
|
|
imageapi "yunion.io/x/onecloud/pkg/apis/image"
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/db"
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/db/taskman"
|
|
"yunion.io/x/onecloud/pkg/compute/models"
|
|
)
|
|
|
|
type ContainerBaseTask struct {
|
|
taskman.STask
|
|
}
|
|
|
|
func (t *ContainerBaseTask) GetContainer() *models.SContainer {
|
|
return t.GetObject().(*models.SContainer)
|
|
}
|
|
|
|
func (t *ContainerBaseTask) GetPod() *models.SGuest {
|
|
return t.GetContainer().GetPod()
|
|
}
|
|
|
|
func (t *ContainerBaseTask) GetPodDriver() models.IPodDriver {
|
|
drv, err := t.GetPod().GetDriver()
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return drv.(models.IPodDriver)
|
|
}
|
|
|
|
func (t *ContainerBaseTask) GetContainerCacheImagesInput(ctr *models.SContainer) (*api.ContainerCacheImagesInput, error) {
|
|
input := &api.ContainerCacheImagesInput{}
|
|
for i := range ctr.Spec.VolumeMounts {
|
|
vol := ctr.Spec.VolumeMounts[i]
|
|
if vol.Type != apis.CONTAINER_VOLUME_MOUNT_TYPE_DISK {
|
|
continue
|
|
}
|
|
disk := vol.Disk
|
|
for j := range disk.PostOverlay {
|
|
pov := vol.Disk.PostOverlay[j]
|
|
if pov.GetType() != apis.CONTAINER_VOLUME_MOUNT_DISK_POST_OVERLAY_IMAGE {
|
|
continue
|
|
}
|
|
if err := input.Add(disk.Id, pov.Image.Id, imageapi.IMAGE_DISK_FORMAT_TGZ); err != nil {
|
|
return nil, errors.Wrapf(err, "add disk %q, image %q", disk.Id, pov.Image.Id)
|
|
}
|
|
}
|
|
}
|
|
return input, nil
|
|
}
|
|
|
|
type ContainerCreateTask struct {
|
|
ContainerBaseTask
|
|
}
|
|
|
|
func init() {
|
|
taskman.RegisterTask(ContainerCreateTask{})
|
|
}
|
|
|
|
func (t *ContainerCreateTask) OnInit(ctx context.Context, obj db.IStandaloneModel, body jsonutils.JSONObject) {
|
|
t.startPullImage(ctx, obj.(*models.SContainer))
|
|
}
|
|
|
|
func (t *ContainerCreateTask) startPullImage(ctx context.Context, container *models.SContainer) {
|
|
t.SetStage("OnImagePulled", nil)
|
|
input, err := container.GetHostPullImageInput(ctx, t.GetUserCred())
|
|
if err != nil {
|
|
t.SetStageFailed(ctx, jsonutils.NewString(err.Error()))
|
|
return
|
|
}
|
|
if err := container.StartPullImageTask(ctx, t.GetUserCred(), input, t.GetTaskId()); err != nil {
|
|
t.SetStageFailed(ctx, jsonutils.NewString(err.Error()))
|
|
return
|
|
}
|
|
}
|
|
|
|
func (t *ContainerCreateTask) OnImagePulled(ctx context.Context, container *models.SContainer, data jsonutils.JSONObject) {
|
|
if jsonutils.QueryBoolean(t.GetParams(), "auto_start", false) {
|
|
t.requestCreate(ctx, container)
|
|
} else {
|
|
container.SetStatus(ctx, t.GetUserCred(), api.CONTAINER_STATUS_EXITED, "")
|
|
t.OnStarted(ctx, container, nil)
|
|
}
|
|
}
|
|
|
|
func (t *ContainerCreateTask) OnImagePulledFailed(ctx context.Context, container *models.SContainer, reason jsonutils.JSONObject) {
|
|
t.SetStageFailed(ctx, reason)
|
|
}
|
|
|
|
func (t *ContainerCreateTask) requestCreate(ctx context.Context, container *models.SContainer) {
|
|
container.SetStatus(ctx, t.GetUserCred(), api.CONTAINER_STATUS_CREATING, "")
|
|
t.SetStage("OnCreated", nil)
|
|
if err := t.GetPodDriver().RequestCreateContainer(ctx, t.GetUserCred(), t); err != nil {
|
|
t.OnCreatedFailed(ctx, container, jsonutils.NewString(err.Error()))
|
|
return
|
|
}
|
|
}
|
|
|
|
func (t *ContainerCreateTask) OnCreated(ctx context.Context, container *models.SContainer, data jsonutils.JSONObject) {
|
|
t.SetStage("OnStarted", nil)
|
|
if err := container.StartStartTask(ctx, t.GetUserCred(), t.GetTaskId()); err != nil {
|
|
t.OnCreatedFailed(ctx, container, jsonutils.NewString(errors.Wrap(err, "StartStartTask").Error()))
|
|
}
|
|
}
|
|
|
|
func (t *ContainerCreateTask) OnCreatedFailed(ctx context.Context, container *models.SContainer, reason jsonutils.JSONObject) {
|
|
container.SetStatus(ctx, t.GetUserCred(), api.CONTAINER_STATUS_CREATE_FAILED, reason.String())
|
|
t.SetStageFailed(ctx, reason)
|
|
}
|
|
|
|
func (t *ContainerCreateTask) OnStarted(ctx context.Context, container *models.SContainer, data jsonutils.JSONObject) {
|
|
t.SetStageComplete(ctx, nil)
|
|
}
|
|
|
|
func (t *ContainerCreateTask) OnStartedFailed(ctx context.Context, container *models.SContainer, reason jsonutils.JSONObject) {
|
|
t.SetStageFailed(ctx, reason)
|
|
}
|