-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcommands_schedule.go
349 lines (307 loc) · 10.2 KB
/
commands_schedule.go
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
package main
import (
"errors"
"fmt"
"io"
"maps"
"slices"
"strings"
"github.com/creativeprojects/clog"
"github.com/creativeprojects/resticprofile/config"
"github.com/creativeprojects/resticprofile/schedule"
"golang.org/x/text/cases"
"golang.org/x/text/language"
)
const (
legacyFlagWarning = "the --legacy flag is only temporary and will be removed in version 1.0.0"
)
// createSchedule command
func createSchedule(_ io.Writer, ctx commandContext) error {
c := ctx.config
request := ctx.request
args := ctx.request.arguments
defer c.DisplayConfigurationIssues()
type profileJobs struct {
schedulerConfig schedule.SchedulerConfig
name string
jobs []*config.Schedule
}
allJobs := make([]profileJobs, 0, 1)
// Step 1: Collect all jobs of all selected profiles
for _, profileName := range selectProfilesAndGroups(c, request.profile, args) {
scheduler, jobs, _, err := getScheduleJobs(c, profileName)
if err == nil {
err = requireScheduleJobs(jobs, profileName)
// Skip profile with no schedules when "--all" option is set.
if err != nil && slices.Contains(args, "--all") {
continue
}
}
if err != nil {
return err
}
// add the no-start flag to all the jobs
if slices.Contains(args, "--no-start") {
for id := range jobs {
jobs[id].SetFlag("no-start", "")
}
}
allJobs = append(allJobs, profileJobs{schedulerConfig: scheduler, name: profileName, jobs: jobs})
}
// Step 2: Schedule all collected jobs
for _, j := range allJobs {
err := scheduleJobs(schedule.NewHandler(j.schedulerConfig), j.jobs)
if err != nil {
return retryElevated(err, ctx.flags)
}
}
return nil
}
func removeSchedule(_ io.Writer, ctx commandContext) error {
var err error
c := ctx.config
request := ctx.request
args := ctx.request.arguments
if slices.Contains(args, "--legacy") {
clog.Warning(legacyFlagWarning)
// Unschedule all jobs of all selected profiles
for _, profileName := range selectProfilesAndGroups(c, request.profile, args) {
schedulerConfig, jobs, err := getRemovableScheduleJobs(c, profileName)
if err != nil {
return err
}
err = removeJobs(schedule.NewHandler(schedulerConfig), jobs)
if err != nil {
err = retryElevated(err, ctx.flags)
}
if err != nil {
// we keep trying to remove the other jobs
clog.Error(err)
}
}
return nil
}
profileName := ctx.request.profile
if slices.Contains(args, "--all") {
// Unschedule all jobs of all profiles
profileName = ""
}
schedulerConfig := schedule.NewSchedulerConfig(ctx.global)
err = removeScheduledJobs(schedule.NewHandler(schedulerConfig), ctx.config.GetConfigFile(), profileName)
if err != nil {
return retryElevated(err, ctx.flags)
}
return nil
}
func statusSchedule(w io.Writer, ctx commandContext) error {
c := ctx.config
request := ctx.request
args := ctx.request.arguments
defer c.DisplayConfigurationIssues()
if slices.Contains(args, "--legacy") {
clog.Warning(legacyFlagWarning)
// single profile or group
if !slices.Contains(args, "--all") {
schedulerConfig, schedules, _, err := getScheduleJobs(c, request.profile)
if err != nil {
return err
}
if len(schedules) == 0 {
clog.Warningf("profile or group %s has no schedule", request.profile)
return nil
}
err = statusScheduleProfileOrGroup(schedulerConfig, schedules, ctx.flags, request.profile)
if err != nil {
return err
}
return nil
}
// all profiles and groups
for _, profileName := range selectProfilesAndGroups(c, request.profile, args) {
scheduler, schedules, schedulable, err := getScheduleJobs(c, profileName)
if err != nil {
return err
}
// it's all fine if this profile has no schedule
if len(schedules) == 0 {
continue
}
clog.Infof("%s %q:", cases.Title(language.English).String(schedulable.Kind()), profileName)
err = statusScheduleProfileOrGroup(scheduler, schedules, ctx.flags, profileName)
if err != nil {
// display the error but keep going with the other profiles
clog.Error(err)
}
}
}
profileName := ctx.request.profile
if slices.Contains(args, "--all") {
// display all jobs of all profiles
profileName = ""
}
schedulerConfig := schedule.NewSchedulerConfig(ctx.global)
err := statusScheduledJobs(schedule.NewHandler(schedulerConfig), ctx.config.GetConfigFile(), profileName)
if err != nil {
return retryElevated(err, ctx.flags)
}
return nil
}
// selectProfilesAndGroups returns a list with length >= 1, containing profile and group names that have been selected in flags or extra args.
// With "--all" set in args, names of all profiles and groups are returned, otherwise profileName is returned as-is.
func selectProfilesAndGroups(c *config.Config, profileName string, args []string) []string {
schedulables := make([]string, 0, 1)
// Check for --all or groups
if slices.Contains(args, "--all") {
schedulables = append(schedulables, c.GetProfileNames()...)
schedulables = append(schedulables, c.GetGroupNames()...)
}
// Fallback add profile name from flags
if len(schedulables) == 0 {
schedulables = append(schedulables, profileName)
}
return schedulables
}
func statusScheduleProfileOrGroup(schedulerConfig schedule.SchedulerConfig, schedules []*config.Schedule, flags commandLineFlags, profileName string) error {
err := statusJobs(schedule.NewHandler(schedulerConfig), profileName, schedules)
if err != nil {
return retryElevated(err, flags)
}
return nil
}
func getScheduleJobs(c *config.Config, profileName string) (schedule.SchedulerConfig, []*config.Schedule, config.Schedulable, error) {
global, err := c.GetGlobalSection()
if err != nil {
return nil, nil, nil, fmt.Errorf("cannot load global section: %w", err)
}
if c.HasProfile(profileName) {
profile, schedules, err := getProfileScheduleJobs(c, profileName)
if err != nil {
return nil, nil, nil, err
}
displayDeprecationNotices(profile)
return schedule.NewSchedulerConfig(global), schedules, profile, nil
} else if c.HasProfileGroup(profileName) {
group, schedules, err := getGroupScheduleJobs(c, profileName)
if err != nil {
return nil, nil, nil, err
}
return schedule.NewSchedulerConfig(global), schedules, group, nil
} else {
return nil, nil, nil, fmt.Errorf("profile or group '%s': %w", profileName, config.ErrNotFound)
}
}
func getProfileScheduleJobs(c *config.Config, profileName string) (*config.Profile, []*config.Schedule, error) {
profile, err := c.GetProfile(profileName)
if err != nil {
if errors.Is(err, config.ErrNotFound) {
return nil, nil, fmt.Errorf("profile '%s': %w", profileName, err)
}
return nil, nil, fmt.Errorf("cannot load profile '%s': %w", profileName, err)
}
return profile, slices.Collect(maps.Values(profile.Schedules())), nil
}
func getGroupScheduleJobs(c *config.Config, profileName string) (*config.Group, []*config.Schedule, error) {
group, err := c.GetProfileGroup(profileName)
if err != nil {
if errors.Is(err, config.ErrNotFound) {
return nil, nil, fmt.Errorf("group '%s' not found", profileName)
}
return nil, nil, fmt.Errorf("cannot load group '%s': %w", profileName, err)
}
return group, slices.Collect(maps.Values(group.Schedules())), nil
}
func requireScheduleJobs(schedules []*config.Schedule, profileName string) error {
if len(schedules) == 0 {
return fmt.Errorf("no schedule found for profile '%s'", profileName)
}
return nil
}
func getRemovableScheduleJobs(c *config.Config, profileName string) (schedule.SchedulerConfig, []*config.Schedule, error) {
scheduler, schedules, schedulable, err := getScheduleJobs(c, profileName)
if err != nil {
return nil, nil, err
}
// Add all undeclared schedules as remove-only configs
for _, command := range schedulable.SchedulableCommands() {
declared := false
for _, s := range schedules {
if declared = s.ScheduleOrigin().Command == command; declared {
break
}
}
if !declared {
origin := config.ScheduleOrigin(profileName, command)
schedules = append(schedules, config.NewDefaultSchedule(c, origin))
}
}
return scheduler, schedules, nil
}
func preRunSchedule(ctx *Context) error {
if len(ctx.request.arguments) < 1 {
return errors.New("run-schedule command expects one argument: schedule name")
}
scheduleName := ctx.request.arguments[0]
commandName, profileName, ok := strings.Cut(scheduleName, "@")
if !ok {
return errors.New("the expected format of the schedule name is <command>@<profile-or-group-name>")
}
ctx.request.profile = profileName
ctx.request.schedule = scheduleName
ctx.command = commandName
// remove the parameter from the arguments
ctx.request.arguments = ctx.request.arguments[1:]
var schedulable config.Schedulable
if ctx.config.HasProfile(profileName) {
// don't save the profile in the context now, it's only loaded but not prepared
profile, err := ctx.config.GetProfile(profileName)
if err != nil || profile == nil {
return fmt.Errorf("cannot load profile '%s': %w", profileName, err)
}
schedulable = profile
} else if ctx.config.HasProfileGroup(profileName) {
group, err := ctx.config.GetProfileGroup(profileName)
if err != nil || group == nil {
return fmt.Errorf("cannot load group '%s': %w", profileName, err)
}
schedulable = group
} else {
return fmt.Errorf("profile or group %q: %w", profileName, config.ErrNotFound)
}
// get the list of all scheduled commands to find the current command
if ctx.schedule, ok = schedulable.Schedules()[ctx.command]; ok {
clog.Debugf("preparing scheduled %s %q", schedulable.Kind(), ctx.request.schedule)
prepareScheduledProfile(ctx)
}
return nil
}
func prepareScheduledProfile(ctx *Context) {
s := ctx.schedule
// log file
if len(s.Log) > 0 {
ctx.logTarget = s.Log
}
if len(s.CommandOutput) > 0 {
ctx.commandOutput = s.CommandOutput
}
// battery
if s.IgnoreOnBatteryLessThan > 0 && !s.IgnoreOnBattery.IsStrictlyFalse() {
ctx.stopOnBattery = s.IgnoreOnBatteryLessThan
} else if s.IgnoreOnBattery.IsTrue() {
ctx.stopOnBattery = 100
}
// lock
if s.GetLockMode() == config.ScheduleLockModeDefault {
if duration := s.GetLockWait(); duration > 0 {
ctx.lockWait = duration
}
} else if s.GetLockMode() == config.ScheduleLockModeIgnore {
ctx.noLock = true
}
}
func runSchedule(_ io.Writer, cmdCtx commandContext) error {
err := startProfileOrGroup(&cmdCtx.Context, runProfile)
if err != nil {
return err
}
return nil
}