forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registry.go
75 lines (64 loc) · 2.05 KB
/
registry.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
package hostsubnet
import (
kapi "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api/rest"
"k8s.io/kubernetes/pkg/runtime"
"github.com/openshift/origin/pkg/sdn/api"
)
// Registry is an interface implemented by things that know how to store sdn objects.
type Registry interface {
// ListSubnets obtains a list of subnets
ListSubnets(ctx kapi.Context) (*api.HostSubnetList, error)
// GetSubnet returns a specific subnet
GetSubnet(ctx kapi.Context, name string) (*api.HostSubnet, error)
// CreateSubnet creates a HostSubnet
CreateSubnet(ctx kapi.Context, hs *api.HostSubnet) (*api.HostSubnet, error)
// DeleteSubnet deletes a hostsubnet
DeleteSubnet(ctx kapi.Context, name string) error
}
// Storage is an interface for a standard REST Storage backend
// TODO: move me somewhere common
type Storage interface {
rest.Lister
rest.Getter
Create(ctx kapi.Context, obj runtime.Object) (runtime.Object, error)
Update(ctx kapi.Context, obj runtime.Object) (runtime.Object, bool, error)
Delete(ctx kapi.Context, name string, opts *kapi.DeleteOptions) (runtime.Object, error)
}
// storage puts strong typing around storage calls
type storage struct {
Storage
}
// NewRegistry returns a new Registry interface for the given Storage. Any mismatched
// types will panic.
func NewRegistry(s Storage) Registry {
return &storage{s}
}
func (s *storage) ListSubnets(ctx kapi.Context) (*api.HostSubnetList, error) {
obj, err := s.List(ctx, &kapi.ListOptions{})
if err != nil {
return nil, err
}
return obj.(*api.HostSubnetList), nil
}
func (s *storage) GetSubnet(ctx kapi.Context, name string) (*api.HostSubnet, error) {
obj, err := s.Get(ctx, name)
if err != nil {
return nil, err
}
return obj.(*api.HostSubnet), nil
}
func (s *storage) CreateSubnet(ctx kapi.Context, hs *api.HostSubnet) (*api.HostSubnet, error) {
obj, err := s.Create(ctx, hs)
if err != nil {
return nil, err
}
return obj.(*api.HostSubnet), nil
}
func (s *storage) DeleteSubnet(ctx kapi.Context, name string) error {
_, err := s.Delete(ctx, name, nil)
if err != nil {
return err
}
return nil
}