-
Notifications
You must be signed in to change notification settings - Fork 2
/
dispatcher.go
130 lines (110 loc) · 3.01 KB
/
dispatcher.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
/*
* ddb-sync
* Copyright (C) 2018 Instructure Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"context"
"fmt"
"strings"
"sync"
"github.com/instructure/ddb-sync/config"
"github.com/instructure/ddb-sync/log"
"github.com/instructure/ddb-sync/operations"
"github.com/instructure/ddb-sync/status"
)
const (
checkpointHeader = "================= Progress Update =================="
checkpointFooter = "===================================================="
)
type Dispatcher struct {
Operators []*operations.Operator
operatorsWG sync.WaitGroup
ctx context.Context
cancel context.CancelFunc
}
func NewDispatcher(plans []config.OperationPlan) (*Dispatcher, error) {
var operators []*operations.Operator
ctx, cancel := context.WithCancel(context.Background())
var finalErr error
for _, plan := range plans {
plan = plan.WithDefaults()
err := plan.Validate()
if err != nil {
fmt.Printf("[ERROR] %v\n", err)
finalErr = err
continue
}
operator, err := operations.NewOperator(ctx, plan, cancel)
if err != nil {
fmt.Printf("[ERROR] %v\n", err)
finalErr = err
continue
}
operators = append(operators, operator)
}
return &Dispatcher{
Operators: operators,
ctx: ctx,
cancel: cancel,
}, finalErr
}
func (d *Dispatcher) Preflights() error {
err := quickCheckForActiveCredentials(d.ctx)
if err != nil {
fmt.Println("[ERROR] No valid credentials found")
return err
}
var finalErr error
for _, operator := range d.Operators {
err := operator.Preflights()
if err != nil {
fmt.Printf("[ERROR] %v\n", err)
finalErr = err
}
}
return finalErr
}
func (d *Dispatcher) Run() error {
collator := operations.ErrorCollator{
Cancel: d.cancel,
}
for _, operator := range d.Operators {
collator.Register(operator.Run)
}
return collator.Run()
}
func (d *Dispatcher) Checkpoint() {
checkpoints := []string{"", checkpointHeader}
for _, operator := range d.Operators {
adtl := operator.Checkpoint()
if len(adtl) > 0 {
checkpoints = append(checkpoints, operator.Checkpoint())
}
}
checkpoints = append(checkpoints, checkpointFooter)
log.Printf(strings.Join(checkpoints, "\n"))
}
func (d *Dispatcher) Statuses() *status.Set {
var statuses []*status.Status
for _, operator := range d.Operators {
statuses = append(statuses, operator.Status())
}
return status.NewSet(statuses)
}
func (d *Dispatcher) Cancel() {
d.cancel()
}