2022-08-14 10:34:19 +08:00
|
|
|
package poller
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-08-14 11:17:55 +08:00
|
|
|
"time"
|
2022-08-14 10:34:19 +08:00
|
|
|
|
|
|
|
"gitea.com/gitea/act_runner/client"
|
2022-08-17 14:26:58 +08:00
|
|
|
runnerv1 "gitea.com/gitea/proto-go/runner/v1"
|
2022-08-14 10:59:09 +08:00
|
|
|
|
2022-08-14 10:34:19 +08:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2022-09-01 15:09:22 +08:00
|
|
|
func New(cli client.Client, dispatch func(context.Context, *runnerv1.Stage) error, filter *client.Filter) *Poller {
|
2022-08-14 10:34:19 +08:00
|
|
|
return &Poller{
|
|
|
|
Client: cli,
|
2022-08-28 14:05:56 +08:00
|
|
|
Filter: filter,
|
2022-08-14 13:29:00 +08:00
|
|
|
Dispatch: dispatch,
|
2022-08-14 10:34:19 +08:00
|
|
|
routineGroup: newRoutineGroup(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Poller struct {
|
2022-08-14 13:29:00 +08:00
|
|
|
Client client.Client
|
2022-08-28 14:05:56 +08:00
|
|
|
Filter *client.Filter
|
2022-09-01 15:09:22 +08:00
|
|
|
Dispatch func(context.Context, *runnerv1.Stage) error
|
2022-08-14 10:34:19 +08:00
|
|
|
|
|
|
|
routineGroup *routineGroup
|
|
|
|
}
|
|
|
|
|
2022-08-28 14:05:56 +08:00
|
|
|
func (p *Poller) Poll(ctx context.Context, n int) error {
|
|
|
|
// register new runner.
|
2022-09-01 15:09:22 +08:00
|
|
|
_, err := p.Client.Register(ctx, &runnerv1.RegisterRequest{
|
2022-08-28 14:05:56 +08:00
|
|
|
Os: p.Filter.OS,
|
|
|
|
Arch: p.Filter.Arch,
|
|
|
|
Capacity: int64(p.Filter.Capacity),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("poller: cannot register new runner")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-08-14 10:34:19 +08:00
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
func(i int) {
|
|
|
|
p.routineGroup.Run(func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
log.Infof("stopped the runner: %d", i+1)
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
if ctx.Err() != nil {
|
|
|
|
log.Infof("stopping the runner: %d", i+1)
|
|
|
|
return
|
|
|
|
}
|
2022-09-01 15:09:22 +08:00
|
|
|
if err := p.poll(ctx, i+1); err != nil {
|
2022-08-14 10:34:19 +08:00
|
|
|
log.WithError(err).Error("poll error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}(i)
|
|
|
|
}
|
|
|
|
p.routineGroup.Wait()
|
2022-08-28 14:05:56 +08:00
|
|
|
return nil
|
2022-08-14 10:34:19 +08:00
|
|
|
}
|
|
|
|
|
2022-09-01 15:09:22 +08:00
|
|
|
func (p *Poller) poll(ctx context.Context, thread int) error {
|
2022-08-14 10:34:19 +08:00
|
|
|
log.WithField("thread", thread).Info("poller: request stage from remote server")
|
|
|
|
|
2022-08-14 11:17:55 +08:00
|
|
|
// TODO: fetch the job from remote server
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
|
2022-09-01 15:09:22 +08:00
|
|
|
// request a new build stage for execution from the central
|
|
|
|
// build server.
|
|
|
|
stage, err := p.Client.Request(ctx, &runnerv1.RequestRequest{
|
|
|
|
Kind: p.Filter.Kind,
|
|
|
|
Os: p.Filter.OS,
|
|
|
|
Arch: p.Filter.Arch,
|
|
|
|
Type: p.Filter.Type,
|
|
|
|
})
|
|
|
|
if err == context.Canceled || err == context.DeadlineExceeded {
|
|
|
|
log.WithError(err).Trace("poller: no stage returned")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("poller: cannot request stage")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// exit if a nil or empty stage is returned from the system
|
|
|
|
// and allow the runner to retry.
|
|
|
|
if stage == nil || stage.Id == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return p.Dispatch(ctx, stage)
|
2022-08-14 10:34:19 +08:00
|
|
|
}
|