2023-04-04 21:32:04 +08:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package poll
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
2023-07-24 12:28:44 +08:00
|
|
|
"fmt"
|
2023-04-04 21:32:04 +08:00
|
|
|
"sync"
|
2023-07-25 11:25:50 +08:00
|
|
|
"sync/atomic"
|
2023-04-04 21:32:04 +08:00
|
|
|
|
|
|
|
runnerv1 "code.gitea.io/actions-proto-go/runner/v1"
|
|
|
|
"github.com/bufbuild/connect-go"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"golang.org/x/time/rate"
|
|
|
|
|
|
|
|
"gitea.com/gitea/act_runner/internal/app/run"
|
|
|
|
"gitea.com/gitea/act_runner/internal/pkg/client"
|
|
|
|
"gitea.com/gitea/act_runner/internal/pkg/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Poller struct {
|
2023-07-25 11:25:50 +08:00
|
|
|
client client.Client
|
|
|
|
runner *run.Runner
|
|
|
|
cfg *config.Config
|
|
|
|
tasksVersion atomic.Int64 // tasksVersion used to store the version of the last task fetched from the Gitea.
|
2023-04-04 21:32:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func New(cfg *config.Config, client client.Client, runner *run.Runner) *Poller {
|
|
|
|
return &Poller{
|
2023-04-06 10:57:36 +08:00
|
|
|
client: client,
|
|
|
|
runner: runner,
|
|
|
|
cfg: cfg,
|
2023-04-04 21:32:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Poller) Poll(ctx context.Context) {
|
2023-04-06 10:57:36 +08:00
|
|
|
limiter := rate.NewLimiter(rate.Every(p.cfg.Runner.FetchInterval), 1)
|
2023-04-04 21:32:04 +08:00
|
|
|
wg := &sync.WaitGroup{}
|
2023-04-06 10:57:36 +08:00
|
|
|
for i := 0; i < p.cfg.Runner.Capacity; i++ {
|
2023-04-04 21:32:04 +08:00
|
|
|
wg.Add(1)
|
|
|
|
go p.poll(ctx, wg, limiter)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Poller) poll(ctx context.Context, wg *sync.WaitGroup, limiter *rate.Limiter) {
|
|
|
|
defer wg.Done()
|
|
|
|
for {
|
2023-07-24 15:07:53 +08:00
|
|
|
if err := limiter.Wait(ctx); err != nil {
|
|
|
|
if ctx.Err() != nil {
|
|
|
|
log.WithError(err).Debug("limiter wait failed")
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
task, ok := p.fetchTask(ctx)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
p.runTaskWithRecover(ctx, task)
|
2023-07-24 12:28:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-24 15:07:53 +08:00
|
|
|
func (p *Poller) runTaskWithRecover(ctx context.Context, task *runnerv1.Task) {
|
2023-07-24 12:28:44 +08:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
err := fmt.Errorf("panic: %v", r)
|
2023-07-24 15:07:53 +08:00
|
|
|
log.WithError(err).Error("panic in runTaskWithRecover")
|
2023-04-04 21:32:04 +08:00
|
|
|
}
|
2023-07-24 12:28:44 +08:00
|
|
|
}()
|
|
|
|
|
|
|
|
if err := p.runner.Run(ctx, task); err != nil {
|
|
|
|
log.WithError(err).Error("failed to run task")
|
2023-04-04 21:32:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Poller) fetchTask(ctx context.Context) (*runnerv1.Task, bool) {
|
2023-04-06 10:57:36 +08:00
|
|
|
reqCtx, cancel := context.WithTimeout(ctx, p.cfg.Runner.FetchTimeout)
|
2023-04-04 21:32:04 +08:00
|
|
|
defer cancel()
|
|
|
|
|
2023-07-25 11:25:50 +08:00
|
|
|
// Load the version value that was in the cache when the request was sent.
|
|
|
|
v := p.tasksVersion.Load()
|
|
|
|
resp, err := p.client.FetchTask(reqCtx, connect.NewRequest(&runnerv1.FetchTaskRequest{
|
|
|
|
TasksVersion: v,
|
|
|
|
}))
|
2023-04-04 21:32:04 +08:00
|
|
|
if errors.Is(err, context.DeadlineExceeded) {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("failed to fetch task")
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
2023-07-25 11:25:50 +08:00
|
|
|
if resp == nil || resp.Msg == nil {
|
2023-04-04 21:32:04 +08:00
|
|
|
return nil, false
|
|
|
|
}
|
2023-07-25 11:25:50 +08:00
|
|
|
|
|
|
|
if resp.Msg.TasksVersion > v {
|
|
|
|
p.tasksVersion.CompareAndSwap(v, resp.Msg.TasksVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
if resp.Msg.Task == nil {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// got a task, set `tasksVersion` to zero to focre query db in next request.
|
|
|
|
p.tasksVersion.CompareAndSwap(resp.Msg.TasksVersion, 0)
|
|
|
|
|
2023-04-04 21:32:04 +08:00
|
|
|
return resp.Msg.Task, true
|
|
|
|
}
|