-
Notifications
You must be signed in to change notification settings - Fork 377
/
nasvolume.go
125 lines (107 loc) · 3.38 KB
/
nasvolume.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
// Copyright (c) 2021 Terminus, Inc.
//
// This program is free software: you can use, redistribute, and/or modify
// it under the terms of the GNU Affero General Public License, version 3
// or later ("AGPL"), as published by the Free Software Foundation.
//
// 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.
//
// 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 driver
import (
"path/filepath"
"github.com/erda-project/erda/apistructs"
"github.com/erda-project/erda/modules/scheduler/impl/volume"
"github.com/erda-project/erda/pkg/jsonstore"
"github.com/pkg/errors"
)
var (
BadVolumeTypeNotNasVolume = errors.New("Bad VolumeType, not nasvolume")
)
const (
NasVolumeHostPathPrefix = "/netdata/volumes"
)
type NasVolumeDriver struct {
js jsonstore.JsonStore
}
func NewNasVolumeDriver(js jsonstore.JsonStore) volume.Volume {
return &NasVolumeDriver{js}
}
func (d NasVolumeDriver) Type() volume.VolumeType {
return apistructs.NasVolume
}
func (d NasVolumeDriver) Create(config volume.VolumeCreateConfig) (volume.VolumeInfo, error) {
if config.Type != apistructs.NasVolume {
return volume.VolumeInfo{}, BadVolumeTypeNotNasVolume
}
info, err := defaultCreate(d.js, config)
if err != nil {
return volume.VolumeInfo{}, err
}
// TODO: create nasvolume on netdata
return info, nil
}
func (d NasVolumeDriver) Info(ID volume.VolumeIdentity) (volume.VolumeInfo, error) {
return defaultInfo(d.js, ID)
}
func (d NasVolumeDriver) Attach(ID volume.VolumeIdentity, dst volume.AttachDest) (volume.AttachCallback, error) {
if err := dst.Validate(); err != nil {
return nil, errors.Wrap(BadAttachDest, err.Error())
}
info, err := defaultInfo(d.js, ID)
if err != nil {
return nil, err
}
if info.Type != apistructs.NasVolume {
return nil, BadVolumeTypeNotNasVolume
}
ref := volume.VolumeReference{apistructs.AttachDest(dst)}
info.References = append(info.References, ref)
_, err = defaultUpdate(d.js, ID, info)
if err != nil {
return nil, err
}
cb := func(runtime *apistructs.ServiceGroup) (volume.VolumeInfo, error) {
for i, s := range runtime.Services {
if s.Name == dst.Service {
for idx := range s.Volumes {
runtime.Services[i].Volumes[idx].VolumePath = mkNasVolumeHostPath(info.ID)
}
}
}
return info, nil
}
return cb, nil
}
func (d NasVolumeDriver) UnAttach(ID volume.VolumeIdentity, dst volume.AttachDest) (volume.VolumeInfo, error) {
if err := dst.Validate(); err != nil {
return volume.VolumeInfo{}, errors.Wrap(BadAttachDest, err.Error())
}
info, err := defaultInfo(d.js, ID)
if err != nil {
return volume.VolumeInfo{}, err
}
newReferences := []volume.VolumeReference{}
for _, ref := range info.References {
if !volume.AttachDest(ref.Info).Equal(dst) {
newReferences = append(newReferences, ref)
}
}
info.References = newReferences
_, err = defaultUpdate(d.js, ID, info)
if err != nil {
return volume.VolumeInfo{}, err
}
return info, nil
}
func (d NasVolumeDriver) Delete(ID volume.VolumeIdentity, force bool) error {
// TODO: Call soldier to delete
_, err := defaultSoftDelete(d.js, ID) // soft delete
return err
}
func mkNasVolumeHostPath(ID string) string {
return filepath.Join(NasVolumeHostPathPrefix, ID)
}