| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- // 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)
- }
|