forked from shapeblue/cloudstack-csi-driver
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsnapshots.go
More file actions
162 lines (143 loc) · 4.37 KB
/
snapshots.go
File metadata and controls
162 lines (143 loc) · 4.37 KB
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
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 cloud
import (
"context"
"strings"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"k8s.io/klog/v2"
)
func (c *client) GetSnapshotByID(ctx context.Context, snapshotID string) (*Snapshot, error) {
logger := klog.FromContext(ctx)
logger.V(2).Info("CloudStack API call", "command", "GetSnapshotByID", "params", map[string]string{
"id": snapshotID,
})
snapshot, count, err := c.Snapshot.GetSnapshotByID(snapshotID)
if err != nil {
if count == 0 {
return nil, ErrNotFound
}
return nil, err
}
return &Snapshot{
ID: snapshot.Id,
Name: snapshot.Name,
DomainID: snapshot.Domainid,
ProjectID: snapshot.Projectid,
ZoneID: snapshot.Zoneid,
VolumeID: snapshot.Volumeid,
}, nil
}
func (c *client) CreateSnapshot(ctx context.Context, volumeID, name string) (*Snapshot, error) {
logger := klog.FromContext(ctx)
p := c.Snapshot.NewCreateSnapshotParams(volumeID)
p.SetName(name)
logger.V(2).Info("CloudStack API call", "command", "CreateSnapshot", "params", map[string]string{
"volumeid": volumeID,
"name": name,
})
snapshot, err := c.Snapshot.CreateSnapshot(p)
if err != nil {
return nil, status.Errorf(codes.Internal, "Error %v", err)
}
return &Snapshot{
ID: snapshot.Id,
Name: snapshot.Name,
Size: snapshot.Virtualsize,
DomainID: snapshot.Domainid,
ProjectID: snapshot.Projectid,
ZoneID: snapshot.Zoneid,
VolumeID: snapshot.Volumeid,
CreatedAt: snapshot.Created,
}, nil
}
func (c *client) DeleteSnapshot(_ context.Context, snapshotID string) error {
p := c.Snapshot.NewDeleteSnapshotParams(snapshotID)
_, err := c.Snapshot.DeleteSnapshot(p)
if err != nil && strings.Contains(err.Error(), "4350") {
// CloudStack error InvalidParameterValueException
return ErrNotFound
}
return err
}
func (c *client) GetSnapshotByName(ctx context.Context, name string) (*Snapshot, error) {
logger := klog.FromContext(ctx)
logger.V(2).Info("CloudStack API call", "command", "GetSnapshotByName", "params", map[string]string{
"name": name,
})
snapshot, count, err := c.Snapshot.GetSnapshotByName(name)
if err != nil {
if count == 0 {
return nil, ErrNotFound
}
return nil, err
}
return &Snapshot{
ID: snapshot.Id,
Name: snapshot.Name,
DomainID: snapshot.Domainid,
ProjectID: snapshot.Projectid,
ZoneID: snapshot.Zoneid,
VolumeID: snapshot.Volumeid,
CreatedAt: snapshot.Created,
}, nil
}
func (c *client) ListSnapshots(ctx context.Context, volumeID, snapshotID string) ([]*Snapshot, error) {
logger := klog.FromContext(ctx)
p := c.Snapshot.NewListSnapshotsParams()
// snapshotID is optional: csi.ListSnapshotsRequest
if snapshotID != "" {
p.SetId(snapshotID)
}
// volumeID is optional: csi.ListSnapshotsRequest
if volumeID != "" {
p.SetVolumeid(volumeID)
}
// There is no list function that uses the client default project id option
if c.projectID != "" {
p.SetProjectid(c.projectID)
}
logger.V(2).Info("CloudStack API call", "command", "ListSnapshots", "params", map[string]string{
"id": snapshotID,
"volumeid": volumeID,
})
l, err := c.Snapshot.ListSnapshots(p)
if err != nil {
return nil, err
}
if l.Count == 0 {
return []*Snapshot{}, nil
}
result := make([]*Snapshot, 0, l.Count)
for _, snapshot := range l.Snapshots {
s := &Snapshot{
ID: snapshot.Id,
Name: snapshot.Name,
Size: snapshot.Virtualsize,
DomainID: snapshot.Domainid,
ProjectID: snapshot.Projectid,
ZoneID: snapshot.Zoneid,
VolumeID: snapshot.Volumeid,
CreatedAt: snapshot.Created,
}
result = append(result, s)
}
return result, nil
}