
Moves the sandbox store plugin under the plugins packages and adds a unique plugin type for other plugins to depend on it. Updates the sandbox controller plugin to depend on the sandbox store plugin. Signed-off-by: Derek McGowan <derek@mcg.dev>
118 lines
3.4 KiB
Go
118 lines
3.4 KiB
Go
/*
|
|
Copyright The containerd 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 sandbox
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
api "github.com/containerd/containerd/api/services/sandbox/v1"
|
|
"github.com/containerd/containerd/api/types"
|
|
"github.com/containerd/containerd/errdefs"
|
|
"github.com/containerd/containerd/log"
|
|
"github.com/containerd/containerd/plugin"
|
|
"github.com/containerd/containerd/sandbox"
|
|
)
|
|
|
|
func init() {
|
|
plugin.Register(&plugin.Registration{
|
|
Type: plugin.GRPCPlugin,
|
|
ID: "sandboxes",
|
|
Requires: []plugin.Type{
|
|
plugin.SandboxStorePlugin,
|
|
},
|
|
InitFn: func(ic *plugin.InitContext) (interface{}, error) {
|
|
sp, err := ic.GetByID(plugin.SandboxStorePlugin, "local")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &sandboxService{store: sp.(sandbox.Store)}, nil
|
|
},
|
|
})
|
|
}
|
|
|
|
type sandboxService struct {
|
|
store sandbox.Store
|
|
api.UnimplementedStoreServer
|
|
}
|
|
|
|
var _ api.StoreServer = (*sandboxService)(nil)
|
|
|
|
func (s *sandboxService) Register(server *grpc.Server) error {
|
|
api.RegisterStoreServer(server, s)
|
|
return nil
|
|
}
|
|
|
|
func (s *sandboxService) Create(ctx context.Context, req *api.StoreCreateRequest) (*api.StoreCreateResponse, error) {
|
|
log.G(ctx).WithField("req", req).Debug("create sandbox")
|
|
sb, err := s.store.Create(ctx, sandbox.FromProto(req.Sandbox))
|
|
if err != nil {
|
|
return nil, errdefs.ToGRPC(err)
|
|
}
|
|
|
|
return &api.StoreCreateResponse{Sandbox: sandbox.ToProto(&sb)}, nil
|
|
}
|
|
|
|
func (s *sandboxService) Update(ctx context.Context, req *api.StoreUpdateRequest) (*api.StoreUpdateResponse, error) {
|
|
log.G(ctx).WithField("req", req).Debug("update sandbox")
|
|
|
|
sb, err := s.store.Update(ctx, sandbox.FromProto(req.Sandbox), req.Fields...)
|
|
if err != nil {
|
|
return nil, errdefs.ToGRPC(err)
|
|
}
|
|
|
|
return &api.StoreUpdateResponse{Sandbox: sandbox.ToProto(&sb)}, nil
|
|
}
|
|
|
|
func (s *sandboxService) List(ctx context.Context, req *api.StoreListRequest) (*api.StoreListResponse, error) {
|
|
log.G(ctx).WithField("req", req).Debug("list sandboxes")
|
|
|
|
resp, err := s.store.List(ctx, req.Filters...)
|
|
if err != nil {
|
|
return nil, errdefs.ToGRPC(err)
|
|
}
|
|
|
|
list := make([]*types.Sandbox, len(resp))
|
|
for i := range resp {
|
|
list[i] = sandbox.ToProto(&resp[i])
|
|
}
|
|
|
|
return &api.StoreListResponse{List: list}, nil
|
|
}
|
|
|
|
func (s *sandboxService) Get(ctx context.Context, req *api.StoreGetRequest) (*api.StoreGetResponse, error) {
|
|
log.G(ctx).WithField("req", req).Debug("get sandbox")
|
|
resp, err := s.store.Get(ctx, req.SandboxID)
|
|
if err != nil {
|
|
return nil, errdefs.ToGRPC(err)
|
|
}
|
|
|
|
desc := sandbox.ToProto(&resp)
|
|
return &api.StoreGetResponse{Sandbox: desc}, nil
|
|
}
|
|
|
|
func (s *sandboxService) Delete(ctx context.Context, req *api.StoreDeleteRequest) (*api.StoreDeleteResponse, error) {
|
|
log.G(ctx).WithField("req", req).Debug("delete sandbox")
|
|
if err := s.store.Delete(ctx, req.SandboxID); err != nil {
|
|
return nil, errdefs.ToGRPC(err)
|
|
}
|
|
|
|
return &api.StoreDeleteResponse{}, nil
|
|
}
|