-
Notifications
You must be signed in to change notification settings - Fork 620
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSI: Move capability parsing and arguments check to internal package
Signed-off-by: Olli Janatuinen <olli.janatuinen@gmail.com>
- Loading branch information
Showing
4 changed files
with
76 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
package capability | ||
|
||
import ( | ||
"github.com/container-storage-interface/spec/lib/go/csi" | ||
"github.com/moby/swarmkit/v2/api" | ||
"google.golang.org/grpc/codes" | ||
"google.golang.org/grpc/status" | ||
) | ||
|
||
func CheckArguments(req *api.VolumeAssignment) error { | ||
if len(req.VolumeID) == 0 { | ||
return status.Error(codes.InvalidArgument, "Volume ID missing in request") | ||
} | ||
if req.AccessMode == nil { | ||
return status.Error(codes.InvalidArgument, "AccessMode missing in request") | ||
} | ||
return nil | ||
} | ||
|
||
func MakeCapability(am *api.VolumeAccessMode) *csi.VolumeCapability { | ||
var mode csi.VolumeCapability_AccessMode_Mode | ||
switch am.Scope { | ||
case api.VolumeScopeSingleNode: | ||
switch am.Sharing { | ||
case api.VolumeSharingNone, api.VolumeSharingOneWriter, api.VolumeSharingAll: | ||
mode = csi.VolumeCapability_AccessMode_SINGLE_NODE_WRITER | ||
case api.VolumeSharingReadOnly: | ||
mode = csi.VolumeCapability_AccessMode_SINGLE_NODE_READER_ONLY | ||
} | ||
case api.VolumeScopeMultiNode: | ||
switch am.Sharing { | ||
case api.VolumeSharingReadOnly: | ||
mode = csi.VolumeCapability_AccessMode_MULTI_NODE_READER_ONLY | ||
case api.VolumeSharingOneWriter: | ||
mode = csi.VolumeCapability_AccessMode_MULTI_NODE_SINGLE_WRITER | ||
case api.VolumeSharingAll: | ||
mode = csi.VolumeCapability_AccessMode_MULTI_NODE_MULTI_WRITER | ||
} | ||
} | ||
|
||
capability := &csi.VolumeCapability{ | ||
AccessMode: &csi.VolumeCapability_AccessMode{ | ||
Mode: mode, | ||
}, | ||
} | ||
|
||
if block := am.GetBlock(); block != nil { | ||
capability.AccessType = &csi.VolumeCapability_Block{ | ||
// Block type is empty. | ||
Block: &csi.VolumeCapability_BlockVolume{}, | ||
} | ||
} | ||
|
||
if mount := am.GetMount(); mount != nil { | ||
capability.AccessType = &csi.VolumeCapability_Mount{ | ||
Mount: &csi.VolumeCapability_MountVolume{ | ||
FsType: mount.FsType, | ||
MountFlags: mount.MountFlags, | ||
}, | ||
} | ||
} | ||
|
||
return capability | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters