ceph-csi/internal/csi-common/controllerserver-default.go

50 lines
1.5 KiB
Go
Raw Normal View History

2018-01-09 18:57:14 +00:00
/*
Copyright 2017 The Kubernetes 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 csicommon
import (
"context"
"github.com/ceph/ceph-csi/internal/util/log"
2018-11-26 18:23:56 +00:00
"github.com/container-storage-interface/spec/lib/go/csi"
2018-01-09 18:57:14 +00:00
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
// DefaultControllerServer points to default driver.
2018-01-09 18:57:14 +00:00
type DefaultControllerServer struct {
csi.UnimplementedControllerServer
Driver *CSIDriver
2018-01-09 18:57:14 +00:00
}
// ControllerGetCapabilities implements the default GRPC callout.
// Default supports all capabilities.
func (cs *DefaultControllerServer) ControllerGetCapabilities(
ctx context.Context,
req *csi.ControllerGetCapabilitiesRequest,
) (*csi.ControllerGetCapabilitiesResponse, error) {
log.TraceLog(ctx, "Using default ControllerGetCapabilities")
if cs.Driver == nil {
return nil, status.Error(codes.Unimplemented, "Controller server is not enabled")
}
2018-01-09 18:57:14 +00:00
return &csi.ControllerGetCapabilitiesResponse{
Capabilities: cs.Driver.capabilities,
2018-01-09 18:57:14 +00:00
}, nil
}