aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/taskqueue/processor_wrapper.go
blob: b1fbd167af69bd8b94b769af0e22582a0f5bd030 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// 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) processTaskCompileSwiftToWasm(ctx context.Context, t *asynq.Task) error {
	var payload TaskPayloadCompileSwiftToWasm
	if err := json.Unmarshal(t.Payload(), &payload); err != nil {
		err := fmt.Errorf("json.Unmarshal failed: %v: %w", err, asynq.SkipRetry)
		p.results <- &TaskResultCompileSwiftToWasm{Err: err}
		return err
	}

	result, err := p.impl.doProcessTaskCompileSwiftToWasm(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 <- &TaskResultCompileSwiftToWasm{Err: err}
		}
		return err
	}
	p.results <- result
	return nil
}

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

	result, err := p.impl.doProcessTaskCompileWasmToNativeExecutable(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 <- &TaskResultCompileWasmToNativeExecutable{Err: err}
		}
		return err
	}
	p.results <- result
	return nil
}

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

	result, err := p.impl.doProcessTaskCreateSubmissionRecord(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 <- &TaskResultCreateSubmissionRecord{Err: err}
		}
		return err
	}
	p.results <- result
	return nil
}

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
}