-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscheduler.go
More file actions
132 lines (117 loc) · 3.3 KB
/
Copy pathscheduler.go
File metadata and controls
132 lines (117 loc) · 3.3 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package scheduler
import (
"context"
"fmt"
"time"
"github.com/go-co-op/gocron/v2"
)
// Scheduler is a high-level facade that owns a gocron scheduler instance.
// It starts automatically and exposes low-ceremony entrypoints for jobs.
type Scheduler struct {
*JobBuilder
s gocron.Scheduler
}
// New creates and starts a scheduler facade.
// It panics only if gocron scheduler construction fails.
// @group Construction
//
// Example: create scheduler and run a simple interval job
//
// s := scheduler.New()
// defer s.Stop()
// s.Every(15).Seconds().Do(func(context.Context) error { return nil })
func New(options ...gocron.SchedulerOption) *Scheduler {
s, err := NewWithError(options...)
if err != nil {
panic(fmt.Sprintf("scheduler.New failed: %v", err))
}
return s
}
// NewWithError creates and starts a scheduler facade and returns setup errors.
// @group Construction
//
// Example: construct with explicit error handling
//
// s, err := scheduler.NewWithError()
// if err != nil {
// panic(err)
// }
// defer s.Stop()
func NewWithError(options ...gocron.SchedulerOption) (*Scheduler, error) {
s, err := gocron.NewScheduler(options...)
if err != nil {
return nil, err
}
s.Start()
state := newRuntimeState()
return &Scheduler{
JobBuilder: newJobBuilderWithState(s, state),
s: s,
}, nil
}
// Stop gracefully shuts down the scheduler.
// @group Lifecycle
//
// Example: stop the scheduler
//
// s := scheduler.New()
// _ = s.Stop()
func (s *Scheduler) Stop() error {
return s.s.Shutdown()
}
// Start starts the underlying scheduler.
// @group Lifecycle
//
// Example: manually start (auto-started by New/NewWithError)
//
// s := scheduler.New()
// s.Start()
func (s *Scheduler) Start() {
s.s.Start()
}
// Shutdown gracefully shuts down the underlying scheduler.
// @group Lifecycle
//
// Example: shutdown via underlying method name
//
// s := scheduler.New()
// _ = s.Shutdown()
func (s *Scheduler) Shutdown() error {
return s.s.Shutdown()
}
// Jobs returns scheduled jobs from the underlying scheduler.
// @group Diagnostics
func (s *Scheduler) Jobs() []gocron.Job {
return s.s.Jobs()
}
func (s *Scheduler) Every(interval int) *FluentEvery {
return s.newJobBuilder().Every(interval)
}
// EveryDuration schedules a duration-based interval job builder.
// @group Intervals
func (s *Scheduler) EveryDuration(interval time.Duration) *JobBuilder {
return s.newJobBuilder().every(interval)
}
func (s *Scheduler) Cron(expr string) *JobBuilder {
return s.newJobBuilder().Cron(expr)
}
// GocronScheduler returns the underlying gocron scheduler for advanced integration.
// Prefer the fluent scheduler API for typical use-cases.
// @group Interop
func (s *Scheduler) GocronScheduler() gocron.Scheduler {
return s.s
}
// WithTaskContextDecorator decorates the fresh per-run task context before a scheduled
// task executes. Returning nil preserves the original context.
func (s *Scheduler) WithTaskContextDecorator(decorator func(context.Context) context.Context) *Scheduler {
if decorator == nil {
decorator = func(ctx context.Context) context.Context { return ctx }
}
s.JobBuilder.taskContextDecorator = decorator
return s
}
func (s *Scheduler) newJobBuilder() *JobBuilder {
builder := newJobBuilderWithState(s.s, s.JobBuilder.state)
builder.taskContextDecorator = s.JobBuilder.taskContextDecorator
return builder
}