-
Notifications
You must be signed in to change notification settings - Fork 153
/
deploymentstore.go
274 lines (243 loc) · 8.46 KB
/
deploymentstore.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
// Copyright 2022 The PipeCD Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package datastore
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/pipe-cd/pipecd/pkg/model"
)
type deploymentCollection struct {
requestedBy Commander
}
func (d *deploymentCollection) Kind() string {
return "Deployment"
}
func (d *deploymentCollection) Factory() Factory {
return func() interface{} {
return &model.Deployment{}
}
}
func (d *deploymentCollection) ListInUsedShards() []Shard {
return []Shard{
AgentShard,
}
}
func (d *deploymentCollection) GetUpdatableShard() (Shard, error) {
switch d.requestedBy {
case PipedCommander:
return AgentShard, nil
default:
return "", ErrUnsupported
}
}
func (d *deploymentCollection) Encode(e interface{}) (map[Shard][]byte, error) {
const errFmt = "failed while encode Deployment object: %s"
me, ok := e.(*model.Deployment)
if !ok {
return nil, fmt.Errorf("type not matched")
}
data, err := json.Marshal(me)
if err != nil {
return nil, fmt.Errorf(errFmt, "unable to marshal entity data")
}
return map[Shard][]byte{
AgentShard: data,
}, nil
}
var (
toPlannedUpdateFunc = func(summary, statusReason, runningCommitHash, runningConfigFilename, version string, versions []*model.ArtifactVersion, stages []*model.PipelineStage) func(*model.Deployment) error {
return func(d *model.Deployment) error {
d.Status = model.DeploymentStatus_DEPLOYMENT_PLANNED
d.Summary = summary
d.StatusReason = statusReason
d.RunningCommitHash = runningCommitHash
d.RunningConfigFilename = runningConfigFilename
d.Version = version
d.Versions = versions
d.Stages = stages
return nil
}
}
toCompletedUpdateFunc = func(status model.DeploymentStatus, stageStatuses map[string]model.StageStatus, statusReason string, completedAt int64) func(*model.Deployment) error {
return func(d *model.Deployment) error {
if !status.IsCompleted() {
return fmt.Errorf("deployment status %s is not completed value: %w", status, ErrInvalidArgument)
}
d.Status = status
d.StatusReason = statusReason
d.CompletedAt = completedAt
for i := range d.Stages {
stageID := d.Stages[i].Id
if status, ok := stageStatuses[stageID]; ok {
d.Stages[i].Status = status
}
}
return nil
}
}
statusUpdateFunc = func(status model.DeploymentStatus, statusReason string) func(*model.Deployment) error {
return func(d *model.Deployment) error {
d.Status = status
d.StatusReason = statusReason
return nil
}
}
stageStatusUpdateFunc = func(stageID string, status model.StageStatus, statusReason string, requires []string, visible bool, retriedCount int32, completedAt int64) func(*model.Deployment) error {
return func(d *model.Deployment) error {
for _, s := range d.Stages {
if s.Id == stageID {
s.Status = status
s.StatusReason = statusReason
if len(requires) > 0 {
s.Requires = requires
}
s.Visible = visible
s.RetriedCount = retriedCount
s.CompletedAt = completedAt
return nil
}
}
return fmt.Errorf("stage id %s not found: %w", stageID, ErrInvalidArgument)
}
}
)
type DeploymentStore interface {
Add(ctx context.Context, d *model.Deployment) error
Get(ctx context.Context, id string) (*model.Deployment, error)
List(ctx context.Context, opts ListOptions) ([]*model.Deployment, string, error)
UpdateToPlanned(ctx context.Context, id, summary, reason, runningCommitHash, runningConfigFilename, version string, versions []*model.ArtifactVersion, stages []*model.PipelineStage) error
UpdateToCompleted(ctx context.Context, id string, status model.DeploymentStatus, stageStatuses map[string]model.StageStatus, reason string, completedAt int64) error
UpdateStatus(ctx context.Context, id string, status model.DeploymentStatus, reason string) error
UpdateStageStatus(ctx context.Context, id, stageID string, status model.StageStatus, reason string, requires []string, visible bool, retriedCount int32, completedAt int64) error
UpdateMetadata(ctx context.Context, id string, metadata map[string]string) error
UpdateStageMetadata(ctx context.Context, deploymentID, stageID string, metadata map[string]string) error
}
type deploymentStore struct {
backend
commander Commander
nowFunc func() time.Time
}
func NewDeploymentStore(ds DataStore, c Commander) DeploymentStore {
return &deploymentStore{
backend: backend{
ds: ds,
col: &deploymentCollection{requestedBy: c},
},
commander: c,
nowFunc: time.Now,
}
}
func (s *deploymentStore) Add(ctx context.Context, d *model.Deployment) error {
now := s.nowFunc().Unix()
if d.CreatedAt == 0 {
d.CreatedAt = now
}
if d.UpdatedAt == 0 {
d.UpdatedAt = now
}
if err := d.Validate(); err != nil {
return err
}
return s.ds.Create(ctx, s.col, d.Id, d)
}
func (s *deploymentStore) Get(ctx context.Context, id string) (*model.Deployment, error) {
var entity model.Deployment
if err := s.ds.Get(ctx, s.col, id, &entity); err != nil {
return nil, err
}
return &entity, nil
}
func (s *deploymentStore) List(ctx context.Context, opts ListOptions) ([]*model.Deployment, string, error) {
it, err := s.ds.Find(ctx, s.col, opts)
if err != nil {
return nil, "", err
}
ds := make([]*model.Deployment, 0)
for {
var d model.Deployment
err := it.Next(&d)
if err == ErrIteratorDone {
break
}
if err != nil {
return nil, "", err
}
ds = append(ds, &d)
}
// In case there is no more elements found, cursor should be set to empty too.
if len(ds) == 0 {
return ds, "", nil
}
cursor, err := it.Cursor()
if err != nil {
return nil, "", err
}
return ds, cursor, nil
}
func (s *deploymentStore) update(ctx context.Context, id string, updater func(*model.Deployment) error) error {
now := s.nowFunc().Unix()
return s.ds.Update(ctx, s.col, id, func(e interface{}) error {
d := e.(*model.Deployment)
if err := updater(d); err != nil {
return err
}
d.UpdatedAt = now
return d.Validate()
})
}
func (s *deploymentStore) UpdateToPlanned(ctx context.Context, id, summary, reason, runningCommitHash, runningConfigFilename, version string, versions []*model.ArtifactVersion, stages []*model.PipelineStage) error {
updater := toPlannedUpdateFunc(summary, reason, runningCommitHash, runningConfigFilename, version, versions, stages)
return s.update(ctx, id, updater)
}
func (s *deploymentStore) UpdateToCompleted(ctx context.Context, id string, status model.DeploymentStatus, stageStatuses map[string]model.StageStatus, reason string, completedAt int64) error {
updater := toCompletedUpdateFunc(status, stageStatuses, reason, completedAt)
return s.update(ctx, id, updater)
}
func (s *deploymentStore) UpdateStatus(ctx context.Context, id string, status model.DeploymentStatus, reason string) error {
updater := statusUpdateFunc(status, reason)
return s.update(ctx, id, updater)
}
func (s *deploymentStore) UpdateStageStatus(ctx context.Context, id, stageID string, status model.StageStatus, reason string, requires []string, visible bool, retriedCount int32, completedAt int64) error {
updater := stageStatusUpdateFunc(stageID, status, reason, requires, visible, retriedCount, completedAt)
return s.update(ctx, id, updater)
}
func (s *deploymentStore) UpdateMetadata(ctx context.Context, id string, metadata map[string]string) error {
return s.update(ctx, id, func(d *model.Deployment) error {
d.Metadata = mergeMetadata(d.Metadata, metadata)
return nil
})
}
func (s *deploymentStore) UpdateStageMetadata(ctx context.Context, deploymentID, stageID string, metadata map[string]string) error {
return s.update(ctx, deploymentID, func(d *model.Deployment) error {
for _, stage := range d.Stages {
if stage.Id == stageID {
stage.Metadata = mergeMetadata(stage.Metadata, metadata)
return nil
}
}
return fmt.Errorf("stage %s is not found: %w", stageID, ErrInvalidArgument)
})
}
func mergeMetadata(ori map[string]string, new map[string]string) map[string]string {
out := make(map[string]string, len(ori)+len(new))
for k, v := range ori {
out[k] = v
}
for k, v := range new {
out[k] = v
}
return out
}