2021-04-18 12:41:13 -07:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-09-19 13:14:55 -07:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2019-08-28 16:12:57 -07:00
|
|
|
"errors"
|
2016-09-19 13:14:55 -07:00
|
|
|
)
|
|
|
|
|
2019-11-04 09:30:59 -08:00
|
|
|
const (
|
2021-09-30 11:53:01 -07:00
|
|
|
lockRESTVersion = "v7" // Add msgp for lockArgs
|
2020-02-21 11:29:57 +05:30
|
|
|
lockRESTVersionPrefix = SlashSeparator + lockRESTVersion
|
2019-11-04 09:30:59 -08:00
|
|
|
lockRESTPrefix = minioReservedBucketPath + "/lock"
|
|
|
|
)
|
2019-04-17 23:16:27 -07:00
|
|
|
|
|
|
|
const (
|
2021-01-25 10:01:27 -08:00
|
|
|
lockRESTMethodHealth = "/health"
|
2021-03-04 03:36:43 +01:00
|
|
|
lockRESTMethodRefresh = "/refresh"
|
2021-01-25 10:01:27 -08:00
|
|
|
lockRESTMethodLock = "/lock"
|
|
|
|
lockRESTMethodRLock = "/rlock"
|
|
|
|
lockRESTMethodUnlock = "/unlock"
|
|
|
|
lockRESTMethodRUnlock = "/runlock"
|
|
|
|
lockRESTMethodForceUnlock = "/force-unlock"
|
2019-04-17 23:16:27 -07:00
|
|
|
)
|
|
|
|
|
2019-11-25 16:39:43 -08:00
|
|
|
var (
|
2020-09-23 12:00:29 -07:00
|
|
|
errLockConflict = errors.New("lock conflict")
|
|
|
|
errLockNotInitialized = errors.New("lock not initialized")
|
2021-03-04 03:36:43 +01:00
|
|
|
errLockNotFound = errors.New("lock not found")
|
2019-11-25 16:39:43 -08:00
|
|
|
)
|