aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/taskqueue/processor_wrapper.go
blob: e6ddef3a67c717916b1eee149e1c06cdc3f04963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Code generated by go generate; DO NOT EDIT.

package taskqueue

import (
	"context"
	"encoding/json"
	"errors"
	"fmt"

	"github.com/hibiken/asynq"
)

type processorWrapper struct {
	impl    processor
	results chan TaskResult
}

func newProcessorWrapper(impl processor) *processorWrapper {
	return &processorWrapper{
		impl:    impl,
		results: make(chan TaskResult),
	}
}

func (p *processorWrapper) processTaskRunTestcase(ctx context.Context, t *asynq.Task) error {
	var payload TaskPayloadRunTestcase
	if err := json.Unmarshal(t.Payload(), &payload); err != nil {
		err := fmt.Errorf("json.Unmarshal failed: %v: %w", err, asynq.SkipRetry)
		p.results <- &TaskResultRunTestcase{Err: err}
		return err
	}

	result, err := p.impl.doProcessTaskRunTestcase(ctx, &payload)
	if err != nil {
		retryCount, _ := asynq.GetRetryCount(ctx)
		maxRetry, _ := asynq.GetMaxRetry(ctx)
		isRecoverable := !errors.Is(err, asynq.SkipRetry) && retryCount < maxRetry
		if !isRecoverable {
			p.results <- &TaskResultRunTestcase{Err: err}
		}
		return err
	}
	p.results <- result
	return nil
}