2021-04-18 15:41:13 -04: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/>.
|
2019-11-13 15:17:45 -05:00
|
|
|
|
|
|
|
package dsync
|
|
|
|
|
2020-07-30 02:15:34 -04:00
|
|
|
import "context"
|
|
|
|
|
2019-11-13 15:17:45 -05:00
|
|
|
// NetLocker is dsync compatible locker interface.
|
|
|
|
type NetLocker interface {
|
|
|
|
// Do read lock for given LockArgs. It should return
|
|
|
|
// * a boolean to indicate success/failure of the operation
|
|
|
|
// * an error on failure of lock request operation.
|
2020-07-30 02:15:34 -04:00
|
|
|
RLock(ctx context.Context, args LockArgs) (bool, error)
|
2019-11-13 15:17:45 -05:00
|
|
|
|
|
|
|
// Do write lock for given LockArgs. It should return
|
|
|
|
// * a boolean to indicate success/failure of the operation
|
|
|
|
// * an error on failure of lock request operation.
|
2020-07-30 02:15:34 -04:00
|
|
|
Lock(ctx context.Context, args LockArgs) (bool, error)
|
2019-11-13 15:17:45 -05:00
|
|
|
|
|
|
|
// Do read unlock for given LockArgs. It should return
|
|
|
|
// * a boolean to indicate success/failure of the operation
|
|
|
|
// * an error on failure of unlock request operation.
|
2021-05-11 05:11:29 -04:00
|
|
|
// Canceling the context will abort the remote call.
|
|
|
|
// In that case, the resource may or may not be unlocked.
|
|
|
|
RUnlock(ctx context.Context, args LockArgs) (bool, error)
|
2019-11-13 15:17:45 -05:00
|
|
|
|
|
|
|
// Do write unlock for given LockArgs. It should return
|
|
|
|
// * a boolean to indicate success/failure of the operation
|
|
|
|
// * an error on failure of unlock request operation.
|
2021-05-11 05:11:29 -04:00
|
|
|
// Canceling the context will abort the remote call.
|
|
|
|
// In that case, the resource may or may not be unlocked.
|
|
|
|
Unlock(ctx context.Context, args LockArgs) (bool, error)
|
2019-11-13 15:17:45 -05:00
|
|
|
|
2021-03-03 21:36:43 -05:00
|
|
|
// Refresh the given lock to prevent it from becoming stale
|
|
|
|
Refresh(ctx context.Context, args LockArgs) (bool, error)
|
2019-11-25 19:39:43 -05:00
|
|
|
|
2021-01-25 13:01:27 -05:00
|
|
|
// Unlock (read/write) forcefully for given LockArgs. It should return
|
|
|
|
// * a boolean to indicate success/failure of the operation
|
|
|
|
// * an error on failure of unlock request operation.
|
|
|
|
ForceUnlock(ctx context.Context, args LockArgs) (bool, error)
|
|
|
|
|
2019-11-13 15:17:45 -05:00
|
|
|
// Returns underlying endpoint of this lock client instance.
|
|
|
|
String() string
|
|
|
|
|
|
|
|
// Close closes any underlying connection to the service endpoint
|
|
|
|
Close() error
|
2019-11-19 20:42:27 -05:00
|
|
|
|
|
|
|
// Is the underlying connection online? (is always true for any local lockers)
|
|
|
|
IsOnline() bool
|
2020-10-08 15:32:32 -04:00
|
|
|
|
|
|
|
// Is the underlying locker local to this server?
|
|
|
|
IsLocal() bool
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|