ceph-csi/vendor/github.com/kubernetes-csi/drivers/pkg/hostpath/hostpath.go

124 lines
3.2 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 hostpath
import (
2018-07-18 14:47:22 +00:00
"fmt"
2018-03-06 22:33:18 +00:00
"github.com/container-storage-interface/spec/lib/go/csi/v0"
2018-01-09 18:57:14 +00:00
"github.com/golang/glog"
"github.com/kubernetes-csi/drivers/pkg/csi-common"
)
2018-07-18 14:47:22 +00:00
const (
kib int64 = 1024
mib int64 = kib * 1024
gib int64 = mib * 1024
gib100 int64 = gib * 100
tib int64 = gib * 1024
tib100 int64 = tib * 100
)
2018-01-09 18:57:14 +00:00
type hostPath struct {
driver *csicommon.CSIDriver
ids *identityServer
ns *nodeServer
cs *controllerServer
cap []*csi.VolumeCapability_AccessMode
cscap []*csi.ControllerServiceCapability
}
2018-07-18 14:47:22 +00:00
type hostPathVolume struct {
VolName string `json:"volName"`
VolID string `json:"volID"`
VolSize int64 `json:"volSize"`
VolPath string `json:"volPath"`
}
var hostPathVolumes map[string]hostPathVolume
2018-01-09 18:57:14 +00:00
var (
hostPathDriver *hostPath
2018-07-18 14:47:22 +00:00
vendorVersion = "0.3.0"
2018-01-09 18:57:14 +00:00
)
2018-07-18 14:47:22 +00:00
func init() {
hostPathVolumes = map[string]hostPathVolume{}
}
2018-01-09 18:57:14 +00:00
func GetHostPathDriver() *hostPath {
return &hostPath{}
}
func NewIdentityServer(d *csicommon.CSIDriver) *identityServer {
return &identityServer{
DefaultIdentityServer: csicommon.NewDefaultIdentityServer(d),
}
}
func NewControllerServer(d *csicommon.CSIDriver) *controllerServer {
return &controllerServer{
DefaultControllerServer: csicommon.NewDefaultControllerServer(d),
}
}
func NewNodeServer(d *csicommon.CSIDriver) *nodeServer {
return &nodeServer{
DefaultNodeServer: csicommon.NewDefaultNodeServer(d),
}
}
func (hp *hostPath) Run(driverName, nodeID, endpoint string) {
2018-03-06 22:33:18 +00:00
glog.Infof("Driver: %v ", driverName)
2018-01-09 18:57:14 +00:00
// Initialize default library driver
2018-03-06 22:33:18 +00:00
hp.driver = csicommon.NewCSIDriver(driverName, vendorVersion, nodeID)
2018-02-15 13:50:31 +00:00
if hp.driver == nil {
glog.Fatalln("Failed to initialize CSI Driver.")
}
2018-01-09 18:57:14 +00:00
hp.driver.AddControllerServiceCapabilities([]csi.ControllerServiceCapability_RPC_Type{csi.ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME})
hp.driver.AddVolumeCapabilityAccessModes([]csi.VolumeCapability_AccessMode_Mode{csi.VolumeCapability_AccessMode_SINGLE_NODE_WRITER})
// Create GRPC servers
hp.ids = NewIdentityServer(hp.driver)
hp.ns = NewNodeServer(hp.driver)
hp.cs = NewControllerServer(hp.driver)
s := csicommon.NewNonBlockingGRPCServer()
s.Start(endpoint, hp.ids, hp.cs, hp.ns)
s.Wait()
}
2018-07-18 14:47:22 +00:00
func getVolumeByID(volumeID string) (hostPathVolume, error) {
if hostPathVol, ok := hostPathVolumes[volumeID]; ok {
return hostPathVol, nil
}
return hostPathVolume{}, fmt.Errorf("volume id %s does not exit in the volumes list", volumeID)
}
func getVolumeByName(volName string) (hostPathVolume, error) {
for _, hostPathVol := range hostPathVolumes {
if hostPathVol.VolName == volName {
return hostPathVol, nil
}
}
return hostPathVolume{}, fmt.Errorf("volume name %s does not exit in the volumes list", volName)
}