Skip to content

Commit

Permalink
minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
geropl committed Nov 11, 2024
1 parent 2f27e7b commit eb1709c
Showing 1 changed file with 44 additions and 38 deletions.
82 changes: 44 additions & 38 deletions components/ws-daemon/pkg/controller/workspace_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,62 +223,68 @@ func (wsc *WorkspaceController) handleWorkspaceRunning(ctx context.Context, ws *
}

func (wsc *WorkspaceController) handleWorkspaceStop(ctx context.Context, ws *workspacev1.Workspace, req ctrl.Request) (result ctrl.Result, err error) {
log := log.FromContext(ctx)
span, ctx := opentracing.StartSpanFromContext(ctx, "handleWorkspaceStop")
defer tracing.FinishSpan(span, &err)

if ws.IsConditionTrue(workspacev1.WorkspaceConditionPodRejected) {
// edge case only exercised for rejected workspace pods
if ws.IsConditionPresent(workspacev1.WorkspaceConditionStateWiped) {
// we are done here
return ctrl.Result{}, nil
}

// in this case we are not interested in any backups, but instead are concerned with completely wiping all state that might be dangling somewhere
if ws.IsConditionTrue(workspacev1.WorkspaceConditionContainerRunning) {
// Container is still running, we need to wait for it to stop.
// We should get an event when the condition changes, but requeue
// anyways to make sure we act on it in time.
return ctrl.Result{RequeueAfter: 500 * time.Millisecond}, nil
}
return wsc.doWipeWorkspace(ctx, ws, req)
}

if wsc.latestWorkspace(ctx, ws) != nil {
return ctrl.Result{Requeue: true, RequeueAfter: 100 * time.Millisecond}, nil
}
// regular case
return wsc.doWorkspaceContentBackup(ctx, span, ws, req)
}

setStateWipedCondition := func(s bool) {
err := retry.RetryOnConflict(retryParams, func() error {
if err := wsc.Get(ctx, req.NamespacedName, ws); err != nil {
return err
}

if s {
ws.Status.SetCondition(workspacev1.NewWorkspaceConditionStateWiped("", metav1.ConditionTrue))
} else {
ws.Status.SetCondition(workspacev1.NewWorkspaceConditionStateWiped("", metav1.ConditionFalse))
}
return wsc.Client.Status().Update(ctx, ws)
})
if err != nil {
log.Error(err, "failed to set StateWiped condition")
func (wsc *WorkspaceController) doWipeWorkspace(ctx context.Context, ws *workspacev1.Workspace, req ctrl.Request) (result ctrl.Result, err error) {
log := log.FromContext(ctx)

// in this case we are not interested in any backups, but instead are concerned with completely wiping all state that might be dangling somewhere
if ws.IsConditionTrue(workspacev1.WorkspaceConditionContainerRunning) {
// Container is still running, we need to wait for it to stop.
// We should get an event when the condition changes, but requeue
// anyways to make sure we act on it in time.
return ctrl.Result{RequeueAfter: 500 * time.Millisecond}, nil
}

if wsc.latestWorkspace(ctx, ws) != nil {
return ctrl.Result{Requeue: true, RequeueAfter: 100 * time.Millisecond}, nil
}

setStateWipedCondition := func(s bool) {
err := retry.RetryOnConflict(retryParams, func() error {
if err := wsc.Get(ctx, req.NamespacedName, ws); err != nil {
return err
}
}
log.Info("handling workspace stop - wiping mode")

err = wsc.operations.WipeWorkspace(ctx, ws.Name)
if s {
ws.Status.SetCondition(workspacev1.NewWorkspaceConditionStateWiped("", metav1.ConditionTrue))
} else {
ws.Status.SetCondition(workspacev1.NewWorkspaceConditionStateWiped("", metav1.ConditionFalse))
}
return wsc.Client.Status().Update(ctx, ws)
})
if err != nil {
setStateWipedCondition(false)
wsc.emitEvent(ws, "Wiping", fmt.Errorf("failed to wipe workspace: %w", err))
return ctrl.Result{}, fmt.Errorf("failed to wipe workspace: %w", err)
log.Error(err, "failed to set StateWiped condition")
}
}
log.Info("handling workspace stop - wiping mode")
defer log.Info("handling workspace stop - wiping done.")

setStateWipedCondition(true)

log.Info("handling workspace stop - wiping done.")
return ctrl.Result{}, nil
err = wsc.operations.WipeWorkspace(ctx, ws.Name)
if err != nil {
setStateWipedCondition(false)
wsc.emitEvent(ws, "Wiping", fmt.Errorf("failed to wipe workspace: %w", err))
return ctrl.Result{}, fmt.Errorf("failed to wipe workspace: %w", err)
}

// regular case
return wsc.doWorkspaceContentBackup(ctx, span, ws, req)
setStateWipedCondition(true)

return ctrl.Result{}, nil
}

func (wsc *WorkspaceController) doWorkspaceContentBackup(ctx context.Context, span opentracing.Span, ws *workspacev1.Workspace, req ctrl.Request) (result ctrl.Result, err error) {
Expand Down

0 comments on commit eb1709c

Please sign in to comment.