mirror of
https://github.com/minio/minio.git
synced 2025-04-04 03:40:30 -04:00
Rewrite if-else chains to switch statements (#7382)
This commit is contained in:
parent
6702d23d52
commit
3d29ab4059
@ -319,9 +319,8 @@ func (a adminAPIHandlers) PerfInfoHandler(w http.ResponseWriter, r *http.Request
|
|||||||
}
|
}
|
||||||
|
|
||||||
vars := mux.Vars(r)
|
vars := mux.Vars(r)
|
||||||
perfType := vars["perfType"]
|
switch perfType := vars["perfType"]; perfType {
|
||||||
|
case "drive":
|
||||||
if perfType == "drive" {
|
|
||||||
info := objectAPI.StorageInfo(ctx)
|
info := objectAPI.StorageInfo(ctx)
|
||||||
if !(info.Backend.Type == BackendFS || info.Backend.Type == BackendErasure) {
|
if !(info.Backend.Type == BackendFS || info.Backend.Type == BackendErasure) {
|
||||||
writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
|
writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
|
||||||
@ -344,7 +343,7 @@ func (a adminAPIHandlers) PerfInfoHandler(w http.ResponseWriter, r *http.Request
|
|||||||
// Reply with performance information (across nodes in a
|
// Reply with performance information (across nodes in a
|
||||||
// distributed setup) as json.
|
// distributed setup) as json.
|
||||||
writeSuccessResponseJSON(w, jsonBytes)
|
writeSuccessResponseJSON(w, jsonBytes)
|
||||||
} else if perfType == "cpu" {
|
case "cpu":
|
||||||
// Get CPU load details from local server's cpu(s)
|
// Get CPU load details from local server's cpu(s)
|
||||||
cpu := localEndpointsCPULoad(globalEndpoints)
|
cpu := localEndpointsCPULoad(globalEndpoints)
|
||||||
// Notify all other Minio peers to report cpu load numbers
|
// Notify all other Minio peers to report cpu load numbers
|
||||||
@ -361,7 +360,7 @@ func (a adminAPIHandlers) PerfInfoHandler(w http.ResponseWriter, r *http.Request
|
|||||||
// Reply with cpu load information (across nodes in a
|
// Reply with cpu load information (across nodes in a
|
||||||
// distributed setup) as json.
|
// distributed setup) as json.
|
||||||
writeSuccessResponseJSON(w, jsonBytes)
|
writeSuccessResponseJSON(w, jsonBytes)
|
||||||
} else if perfType == "mem" {
|
case "mem":
|
||||||
// Get mem usage details from local server(s)
|
// Get mem usage details from local server(s)
|
||||||
m := localEndpointsMemUsage(globalEndpoints)
|
m := localEndpointsMemUsage(globalEndpoints)
|
||||||
// Notify all other Minio peers to report mem usage numbers
|
// Notify all other Minio peers to report mem usage numbers
|
||||||
@ -378,7 +377,7 @@ func (a adminAPIHandlers) PerfInfoHandler(w http.ResponseWriter, r *http.Request
|
|||||||
// Reply with mem usage information (across nodes in a
|
// Reply with mem usage information (across nodes in a
|
||||||
// distributed setup) as json.
|
// distributed setup) as json.
|
||||||
writeSuccessResponseJSON(w, jsonBytes)
|
writeSuccessResponseJSON(w, jsonBytes)
|
||||||
} else {
|
default:
|
||||||
writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
|
writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMethodNotAllowed), r.URL)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
35
cmd/posix.go
35
cmd/posix.go
@ -1183,18 +1183,19 @@ func (s *posix) StatFile(volume, path string) (file FileInfo, err error) {
|
|||||||
}
|
}
|
||||||
st, err := os.Stat((filePath))
|
st, err := os.Stat((filePath))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// File is really not found.
|
switch {
|
||||||
if os.IsNotExist(err) {
|
case os.IsNotExist(err):
|
||||||
|
// File is really not found.
|
||||||
return FileInfo{}, errFileNotFound
|
return FileInfo{}, errFileNotFound
|
||||||
} else if isSysErrIO(err) {
|
case isSysErrIO(err):
|
||||||
return FileInfo{}, errFaultyDisk
|
return FileInfo{}, errFaultyDisk
|
||||||
} else if isSysErrNotDir(err) {
|
case isSysErrNotDir(err):
|
||||||
// File path cannot be verified since one of the parents is a file.
|
// File path cannot be verified since one of the parents is a file.
|
||||||
return FileInfo{}, errFileNotFound
|
return FileInfo{}, errFileNotFound
|
||||||
|
default:
|
||||||
|
// Return all errors here.
|
||||||
|
return FileInfo{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return all errors here.
|
|
||||||
return FileInfo{}, err
|
|
||||||
}
|
}
|
||||||
// If its a directory its not a regular file.
|
// If its a directory its not a regular file.
|
||||||
if st.Mode().IsDir() {
|
if st.Mode().IsDir() {
|
||||||
@ -1219,21 +1220,21 @@ func deleteFile(basePath, deletePath string) error {
|
|||||||
|
|
||||||
// Attempt to remove path.
|
// Attempt to remove path.
|
||||||
if err := os.Remove((deletePath)); err != nil {
|
if err := os.Remove((deletePath)); err != nil {
|
||||||
// Ignore errors if the directory is not empty. The server relies on
|
switch {
|
||||||
// this functionality, and sometimes uses recursion that should not
|
case isSysErrNotEmpty(err):
|
||||||
// error on parent directories.
|
// Ignore errors if the directory is not empty. The server relies on
|
||||||
if isSysErrNotEmpty(err) {
|
// this functionality, and sometimes uses recursion that should not
|
||||||
|
// error on parent directories.
|
||||||
return nil
|
return nil
|
||||||
}
|
case os.IsNotExist(err):
|
||||||
|
|
||||||
if os.IsNotExist(err) {
|
|
||||||
return errFileNotFound
|
return errFileNotFound
|
||||||
} else if os.IsPermission(err) {
|
case os.IsPermission(err):
|
||||||
return errFileAccessDenied
|
return errFileAccessDenied
|
||||||
} else if isSysErrIO(err) {
|
case isSysErrIO(err):
|
||||||
return errFaultyDisk
|
return errFaultyDisk
|
||||||
|
default:
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Trailing slash is removed when found to ensure
|
// Trailing slash is removed when found to ensure
|
||||||
|
@ -1798,67 +1798,50 @@ func toJSONError(err error, params ...string) (jerr *json2.Error) {
|
|||||||
|
|
||||||
// toWebAPIError - convert into error into APIError.
|
// toWebAPIError - convert into error into APIError.
|
||||||
func toWebAPIError(err error) APIError {
|
func toWebAPIError(err error) APIError {
|
||||||
if err == errAuthentication {
|
switch err {
|
||||||
return APIError{
|
case errServerNotInitialized:
|
||||||
Code: "AccessDenied",
|
|
||||||
HTTPStatusCode: http.StatusForbidden,
|
|
||||||
Description: err.Error(),
|
|
||||||
}
|
|
||||||
} else if err == errServerNotInitialized {
|
|
||||||
return APIError{
|
return APIError{
|
||||||
Code: "XMinioServerNotInitialized",
|
Code: "XMinioServerNotInitialized",
|
||||||
HTTPStatusCode: http.StatusServiceUnavailable,
|
HTTPStatusCode: http.StatusServiceUnavailable,
|
||||||
Description: err.Error(),
|
Description: err.Error(),
|
||||||
}
|
}
|
||||||
} else if err == auth.ErrInvalidAccessKeyLength {
|
case errAuthentication, auth.ErrInvalidAccessKeyLength, auth.ErrInvalidSecretKeyLength, errInvalidAccessKeyID:
|
||||||
return APIError{
|
return APIError{
|
||||||
Code: "AccessDenied",
|
Code: "AccessDenied",
|
||||||
HTTPStatusCode: http.StatusForbidden,
|
HTTPStatusCode: http.StatusForbidden,
|
||||||
Description: err.Error(),
|
Description: err.Error(),
|
||||||
}
|
}
|
||||||
} else if err == auth.ErrInvalidSecretKeyLength {
|
case errSizeUnspecified:
|
||||||
return APIError{
|
|
||||||
Code: "AccessDenied",
|
|
||||||
HTTPStatusCode: http.StatusForbidden,
|
|
||||||
Description: err.Error(),
|
|
||||||
}
|
|
||||||
} else if err == errInvalidAccessKeyID {
|
|
||||||
return APIError{
|
|
||||||
Code: "AccessDenied",
|
|
||||||
HTTPStatusCode: http.StatusForbidden,
|
|
||||||
Description: err.Error(),
|
|
||||||
}
|
|
||||||
} else if err == errSizeUnspecified {
|
|
||||||
return APIError{
|
return APIError{
|
||||||
Code: "InvalidRequest",
|
Code: "InvalidRequest",
|
||||||
HTTPStatusCode: http.StatusBadRequest,
|
HTTPStatusCode: http.StatusBadRequest,
|
||||||
Description: err.Error(),
|
Description: err.Error(),
|
||||||
}
|
}
|
||||||
} else if err == errChangeCredNotAllowed {
|
case errChangeCredNotAllowed:
|
||||||
return APIError{
|
return APIError{
|
||||||
Code: "MethodNotAllowed",
|
Code: "MethodNotAllowed",
|
||||||
HTTPStatusCode: http.StatusMethodNotAllowed,
|
HTTPStatusCode: http.StatusMethodNotAllowed,
|
||||||
Description: err.Error(),
|
Description: err.Error(),
|
||||||
}
|
}
|
||||||
} else if err == errInvalidBucketName {
|
case errInvalidBucketName:
|
||||||
return APIError{
|
return APIError{
|
||||||
Code: "InvalidBucketName",
|
Code: "InvalidBucketName",
|
||||||
HTTPStatusCode: http.StatusBadRequest,
|
HTTPStatusCode: http.StatusBadRequest,
|
||||||
Description: err.Error(),
|
Description: err.Error(),
|
||||||
}
|
}
|
||||||
} else if err == errInvalidArgument {
|
case errInvalidArgument:
|
||||||
return APIError{
|
return APIError{
|
||||||
Code: "InvalidArgument",
|
Code: "InvalidArgument",
|
||||||
HTTPStatusCode: http.StatusBadRequest,
|
HTTPStatusCode: http.StatusBadRequest,
|
||||||
Description: err.Error(),
|
Description: err.Error(),
|
||||||
}
|
}
|
||||||
} else if err == errEncryptedObject {
|
case errEncryptedObject:
|
||||||
return getAPIError(ErrSSEEncryptedObject)
|
return getAPIError(ErrSSEEncryptedObject)
|
||||||
} else if err == errInvalidEncryptionParameters {
|
case errInvalidEncryptionParameters:
|
||||||
return getAPIError(ErrInvalidEncryptionParameters)
|
return getAPIError(ErrInvalidEncryptionParameters)
|
||||||
} else if err == errObjectTampered {
|
case errObjectTampered:
|
||||||
return getAPIError(ErrObjectTampered)
|
return getAPIError(ErrObjectTampered)
|
||||||
} else if err == errMethodNotAllowed {
|
case errMethodNotAllowed:
|
||||||
return getAPIError(ErrMethodNotAllowed)
|
return getAPIError(ErrMethodNotAllowed)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -549,11 +549,12 @@ func timestampCast(v *Value) (t time.Time, _ error) {
|
|||||||
|
|
||||||
func boolCast(v *Value) (b bool, _ error) {
|
func boolCast(v *Value) (b bool, _ error) {
|
||||||
sToB := func(s string) (bool, error) {
|
sToB := func(s string) (bool, error) {
|
||||||
if s == "true" {
|
switch s {
|
||||||
|
case "true":
|
||||||
return true, nil
|
return true, nil
|
||||||
} else if s == "false" {
|
case "false":
|
||||||
return false, nil
|
return false, nil
|
||||||
} else {
|
default:
|
||||||
return false, errCastFailure("cannot cast to Bool")
|
return false, errCastFailure("cannot cast to Bool")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user