-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocal.go
128 lines (94 loc) · 2.91 KB
/
local.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
package storage
import (
"context"
"fmt"
"github.com/equinor/flowify-workflows-server/models"
"github.com/pkg/errors"
)
type LocalStorageClientImpl struct {
c_store map[models.ComponentReference]models.Component
wf_store map[models.ComponentReference]models.Workflow
job_store map[models.ComponentReference]models.Job
}
func NewLocalNodeStorageClient() *LocalStorageClientImpl {
return &LocalStorageClientImpl{c_store: make(map[models.ComponentReference]models.Component),
wf_store: make(map[models.ComponentReference]models.Workflow)}
}
// Component storage impl
func (c *LocalStorageClientImpl) CreateComponent(ctx context.Context, node models.Component, workspace string) error {
key := node.Metadata.Uid
c.c_store[key] = node
return nil
}
func (c *LocalStorageClientImpl) GetComponent(ctx context.Context, id models.ComponentReference) (models.Component, error) {
v, ok := c.c_store[id]
if !ok {
return models.Component{}, errors.New(fmt.Sprintf("component %s not found", id))
}
return v, nil
}
func (c *LocalStorageClientImpl) ListComponentsMetadata(ctx context.Context, pagination Pagination, workspaceFilter []string) ([]models.Metadata, error) {
res := []models.Metadata{}
pos := 0
i := 0
for _, v := range c.c_store {
if pos >= pagination.Skip && i < pagination.Limit {
res = append(res, v.Metadata)
i++
}
pos++
}
return res, nil
}
// Workflow storage impl
func (c *LocalStorageClientImpl) CreateWorkflow(ctx context.Context, node models.Workflow) error {
key := node.Metadata.Uid
c.wf_store[key] = node
return nil
}
func (c *LocalStorageClientImpl) GetWorkflow(ctx context.Context, id models.ComponentReference) (models.Workflow, error) {
v, ok := c.wf_store[id]
if !ok {
return models.Workflow{}, errors.New(fmt.Sprintf("component %s not found", id))
}
return v, nil
}
func (c *LocalStorageClientImpl) ListWorkflowsMetadata(ctx context.Context, pagination Pagination, workspaceFilter []string) ([]models.Metadata, error) {
res := []models.Metadata{}
pos := 0
i := 0
for _, v := range c.wf_store {
if pos >= pagination.Skip && i < pagination.Limit {
res = append(res, v.Metadata)
i++
}
pos++
}
return res, nil
}
// jobs
func (c *LocalStorageClientImpl) GetJob(ctx context.Context, id models.ComponentReference) (models.Job, error) {
v, ok := c.job_store[id]
if !ok {
return models.Job{}, errors.New(fmt.Sprintf("job %s not found", id))
}
return v, nil
}
func (c *LocalStorageClientImpl) CreateJob(ctx context.Context, node models.Job) error {
key := node.Metadata.Uid
c.job_store[key] = node
return nil
}
func (c *LocalStorageClientImpl) ListJobsMetadata(ctx context.Context, pagination Pagination, workspaceFilter []string) ([]models.Metadata, error) {
res := []models.Metadata{}
pos := 0
i := 0
for _, v := range c.job_store {
if pos >= pagination.Skip && i < pagination.Limit {
res = append(res, v.Metadata)
i++
}
pos++
}
return res, nil
}